ci: disable nodejs v22 tests #58
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
# This is a Github Workflow that runs tests on any push or pull request. | |
# If the tests pass and this is a push to the master branch it also runs Semantic Release. | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: | | |
target | |
package.json | |
retention-days: 1 | |
push: | |
name: Push ${{ github.ref }} | |
needs: build | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
permissions: | |
checks: read | |
statuses: write | |
contents: write | |
packages: write | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: ${{ github.ref == 'refs/heads/main' && '0' || '1' }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build | |
- name: Fetch deps | |
run: npm ci | |
- name: Run tests | |
run: npm run test | |
# - name: Codeclimate | |
# if: github.ref == 'refs/heads/main' | |
# uses: paambaati/codeclimate-action@v4.0.0 | |
# env: | |
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
# with: | |
# coverageLocations: | | |
# ${{github.workspace}}/target/coverage/lcov.info:lcov | |
- name: Semantic Release | |
if: github.ref == 'refs/heads/main' | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_PROVENANCE: true | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GIT_BRANCH: 'main' | |
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }} | |
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} | |
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} | |
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} | |
run: npm_config_yes=true npx zx-semrel | |
pr: | |
if: github.event_name == 'pull_request' | |
needs: build | |
name: PR (Node v${{ matrix.node-version }}, OS ${{ matrix.os }}) | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
# v22 awaits https://github.com/nodejs/node/issues/52682 | |
node-version: [ 14, 20 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build | |
- name: Run all tests | |
if: matrix.os == 'ubuntu-latest' && matrix.node-version == 20 | |
run: | | |
npm ci | |
npm run test | |
- name: Run spawn tests (win32) | |
if: matrix.os == 'windows-latest' && matrix.node-version == 20 | |
run: | | |
npm ci | |
node --loader ts-node/esm --experimental-specifier-resolution=node ./src/test/ts/spawn.test.ts | |
timeout-minutes: 5 | |
- name: Run smoke tests | |
run: npm run test:smoke |