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:
|
2022-11-15 15:57:34 +00:00
|
|
|
- "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
|
2022-11-15 15:57:34 +00:00
|
|
|
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:
|
2023-06-23 19:39:47 +00:00
|
|
|
- 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: ./
|
|
|
|
- run: nextflow -v
|