mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-24 18:39:54 +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:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
|
3
.github/workflows/publish.yml
vendored
3
.github/workflows/publish.yml
vendored
|
@ -15,9 +15,6 @@ jobs:
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
- run: npm run format:check
|
|
||||||
- run: npm run lint
|
|
||||||
- run: npm run test
|
|
||||||
- run: npm run package
|
- run: npm run package
|
||||||
- uses: JasonEtco/build-and-tag-action@v1
|
- uses: JasonEtco/build-and-tag-action@v1
|
||||||
env:
|
env:
|
||||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -2,8 +2,12 @@ name: Run tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
|
Loading…
Reference in a new issue