ci: Update hoops to jump through

This commit is contained in:
Edmund Miller 2022-11-13 16:11:09 -06:00 committed by Thomas A. Christensen II
parent 03b7b3e3d3
commit 3f231d1a10
2 changed files with 7 additions and 2 deletions

View file

@ -31,7 +31,9 @@ jobs:
node-version: 16 node-version: 16
cache: 'npm' cache: 'npm'
- run: npm ci - run: npm ci
- run: npm run build - run: npm run format:check
- run: npm run lint
- run: npm run package
- uses: ./ - uses: ./
with: with:
version: ${{ matrix.nextflow_version }} version: ${{ matrix.nextflow_version }}

View file

@ -14,7 +14,10 @@ jobs:
node-version: 16 node-version: 16
cache: 'npm' cache: 'npm'
- run: npm ci - run: npm ci
- run: npm run build - run: npm run format:check
- run: npm run lint
- run: npm run test
- run: npm run package
- uses: JasonEtco/build-and-tag-action@v1 - uses: JasonEtco/build-and-tag-action@v1
env: env:
GITHUB_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ github.token }}