mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 09:49:56 +00:00
ci: Add a test for PR #14
This commit is contained in:
parent
b9495c9762
commit
3323654b16
1 changed files with 18 additions and 0 deletions
18
.github/workflows/example.yml
vendored
18
.github/workflows/example.yml
vendored
|
@ -42,3 +42,21 @@ jobs:
|
||||||
version: ${{ matrix.nextflow_version }}
|
version: ${{ matrix.nextflow_version }}
|
||||||
all: ${{ matrix.all_distribution }}
|
all: ${{ matrix.all_distribution }}
|
||||||
- run: nextflow -v
|
- run: nextflow -v
|
||||||
|
|
||||||
|
test-14:
|
||||||
|
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 package
|
||||||
|
- uses: easimon/maximize-build-space@v7
|
||||||
|
- uses: ./
|
||||||
|
with:
|
||||||
|
version: ${{ matrix.nextflow_version }}
|
||||||
|
all: ${{ matrix.all_distribution }}
|
||||||
|
- run: nextflow -v
|
||||||
|
|
Loading…
Reference in a new issue