chore: bump version to 2.4.17 and eliminate startup delay #2617
Workflow file for this run
This file contains hidden or 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: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| permissions: | |
| id-token: write | |
| contents: write | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 5 | |
| matrix: | |
| node-version: [ '22', '24' ] | |
| prefix: [ "qase-api-client", "qase-api-v2-client", "qase-javascript-commons", "qase-cypress", "qase-cucumberjs", "qase-newman", "qase-testcafe", "qase-jest", "qase-playwright", "qase-mocha", "qase-wdio", "qase-vitest" ] | |
| name: Project ${{ matrix.prefix }} - Node ${{ matrix.node-version }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm install npm@latest | |
| - run: npm ci | |
| - 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: [ "qase-api-client", "qase-api-v2-client", "qase-javascript-commons", "qase-cypress", "qase-cucumberjs", "qase-newman", "qase-testcafe", "qase-jest", "qase-playwright", "qase-mocha", "qase-wdio", "qase-vitest" ] | |
| if: startsWith(github.event.ref, 'refs/tags') | |
| name: Publish ${{ matrix.prefix }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| if: contains(github.event.ref, matrix.prefix) | |
| with: | |
| node-version: '24' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Update npm | |
| if: contains(github.event.ref, matrix.prefix) | |
| run: npm install npm@latest | |
| - name: Install dependencies | |
| if: contains(github.event.ref, matrix.prefix) | |
| run: npm ci | |
| - name: Build a Node package | |
| if: contains(github.event.ref, matrix.prefix) | |
| run: npm run build -ws --if-present | |
| - name: Publish a release version | |
| if: contains(github.event.ref, matrix.prefix) && !contains(github.event.ref, 'beta') | |
| run: npm publish -w ${{ matrix.prefix }} | |
| - name: Create GitHub Release | |
| if: contains(github.event.ref, matrix.prefix) && !contains(github.event.ref, 'beta') | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: ${{ github.ref_name }} | |
| name: ${{ github.ref_name }} | |
| generate_release_notes: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Publish a beta version | |
| if: contains(github.event.ref, matrix.prefix) && contains(github.event.ref, 'beta') | |
| run: npm publish -w ${{ matrix.prefix }} --tag beta |