mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-24 10:29:56 +00:00
ci: Don't double run jobs
This commit is contained in:
parent
57e49670a9
commit
05aef69bc1
3 changed files with 8 additions and 3 deletions
4
.github/workflows/example.yml
vendored
4
.github/workflows/example.yml
vendored
|
@ -2,8 +2,12 @@ name: Example builds
|
|||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
|
3
.github/workflows/publish.yml
vendored
3
.github/workflows/publish.yml
vendored
|
@ -15,9 +15,6 @@ jobs:
|
|||
cache: 'npm'
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- run: npm run format:check
|
||||
- run: npm run lint
|
||||
- run: npm run test
|
||||
- run: npm run package
|
||||
- uses: JasonEtco/build-and-tag-action@v1
|
||||
env:
|
||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -2,8 +2,12 @@ name: Run tests
|
|||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
|
Loading…
Reference in a new issue