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

32 lines
650 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:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
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@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}