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

63 lines
1.3 KiB
YAML
Raw Normal View History

2022-06-13 18:30:07 +00:00
name: Example builds
on:
push:
2022-11-14 18:52:04 +00:00
branches:
- master
2022-06-13 18:30:07 +00:00
pull_request:
workflow_dispatch:
2022-11-14 18:52:04 +00:00
release:
types: [published]
2022-06-13 18:30:07 +00:00
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
nextflow_version:
- "21.10.3"
- "22.04"
- "22.03.1-edge"
- "latest"
- "latest-stable"
- "latest-edge"
- "latest-everything"
2022-06-13 18:30:07 +00:00
all_distribution:
- true
- false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
2022-11-13 22:05:17 +00:00
- run: npm ci
2022-11-13 22:50:40 +00:00
- run: npm run build
2022-11-13 22:11:09 +00:00
- run: npm run package
2022-06-13 18:30:07 +00:00
- uses: ./
with:
version: ${{ matrix.nextflow_version }}
all: ${{ matrix.all_distribution }}
- run: nextflow -v
2023-06-23 19:29:08 +00:00
test-14:
runs-on: ubuntu-latest
steps:
- uses: easimon/maximize-build-space@v7
2023-06-23 19:29:08 +00:00
- 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: ./
with:
version: ${{ matrix.nextflow_version }}
all: ${{ matrix.all_distribution }}
- run: nextflow -v