ci: Split up steps

This commit is contained in:
Edmund Miller 2022-11-13 16:05:17 -06:00 committed by Thomas A. Christensen II
parent aebdb951b0
commit 4ad727836d
2 changed files with 4 additions and 2 deletions

View file

@ -30,7 +30,8 @@ jobs:
with: with:
node-version: 16 node-version: 16
cache: 'npm' cache: 'npm'
- run: npm ci && npm run build - run: npm ci
- run: npm run build
- uses: ./ - uses: ./
with: with:
version: ${{ matrix.nextflow_version }} version: ${{ matrix.nextflow_version }}

View file

@ -13,7 +13,8 @@ jobs:
with: with:
node-version: 16 node-version: 16
cache: 'npm' cache: 'npm'
- run: npm ci && npm run build - run: npm ci
- run: npm run build
- uses: JasonEtco/build-and-tag-action@v1 - uses: JasonEtco/build-and-tag-action@v1
env: env:
GITHUB_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ github.token }}