Update workflow #1078
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node package | ||
on: [push] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 5 | ||
matrix: | ||
node-version: [ '14', '15', '16', '18' ] | ||
prefix: [ "qaseio", "qase-cypress", "qase-cucumberjs", "qase-newman", "qase-testcafe", "qase-jest", "qase-playwright" ] | ||
name: Project ${{ matrix.prefix }} - Node ${{ matrix.node-version }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
run: npm install | ||
Check failure on line 19 in .github/workflows/npm.yml GitHub Actions / Node packageInvalid workflow file
|
||
run: npm run build -ws --if-present | ||
run: npm run lint -w ${{ matrix.prefix }} | ||
run: npm run test -w ${{ matrix.prefix }} | ||
build-n-publish: | ||
runs-on: ubuntu-latest | ||
needs: test | ||
strategy: | ||
max-parallel: 5 | ||
matrix: | ||
prefix: [ "qaseio", "qase-cypress", "qase-cucumberjs", "qase-newman", "qase-testcafe", "qase-jest", "qase-playwright" ] | ||
if: startsWith(github.event.ref, 'refs/tags') | ||
name: Publish ${{ matrix.prefix }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
if: contains(github.event.ref, matrix.prefix) | ||
with: | ||
node-version: '14' | ||
registry-url: 'https://registry.npmjs.org' | ||
- if: contains(github.event.ref, matrix.prefix) | ||
run: npm install | ||
- if: contains(github.event.ref, matrix.prefix) | ||
run: npm run build -ws --if-present | ||
- if: contains(github.event.ref, matrix.prefix) | ||
run: npm publish -w ${{ matrix.prefix }} --tag beta | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |