From 3323654b16cebd9c10b26112eed1cea5f8c549b4 Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Fri, 23 Jun 2023 14:29:08 -0500 Subject: [PATCH] ci: Add a test for PR #14 --- .github/workflows/example.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index 07495d5..e29e640 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -42,3 +42,21 @@ jobs: version: ${{ matrix.nextflow_version }} all: ${{ matrix.all_distribution }} - 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