setup-nextflow/.github/workflows/test.yml

32 lines
779 B
YAML
Raw Normal View History

name: Run tests
on:
push:
2022-11-14 18:52:04 +00:00
branches:
- master
pull_request:
workflow_dispatch:
2022-11-14 18:52:04 +00:00
release:
types: [published]
jobs:
test:
runs-on: ubuntu-latest
steps:
2024-06-14 00:19:21 +00:00
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version: 20
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm run format:check
- run: npm run lint
- run: npm run package
2023-06-22 07:23:18 +00:00
- run: npm run test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}