Skip to content

Update workflow.

Update workflow. #225

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
# https://github.com/actions/starter-workflows/blob/main/ci/node.js.yml
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- current
- 22.x
- 20.x
- 18.x
- 16.x
# - 14.x
# - 8.x
- 7.x
- 6.x
steps:
- uses: actions/checkout@v4
- id: setup-node
name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- id: node-v
name: Output Node.js version
run: echo "version=$(node -v)" >> $GITHUB_OUTPUT
- id: node-version
name: Parse Node.js version
uses: apexskier/github-semver-parse@v1
with:
version: ${{ steps.node-v.outputs.version }}
- run: which jq
- env:
N_MAJOR: ${{steps.node-version.outputs.major}}
N_MINOR: ${{steps.node-version.outputs.minor}}
run: echo "node - $N_MAJOR $N_MINOR"
- id: npm-v
name: Output npm version
run: echo "version=$(npm -v)" >> $GITHUB_OUTPUT
- id: npm-version
name: Parse npm version
uses: apexskier/github-semver-parse@v1
with:
version: ${{ steps.npm-v.outputs.version }}
- env:
N_MAJOR: ${{steps.npm-version.outputs.major}}
N_MINOR: ${{steps.npm-version.outputs.minor}}
run: echo "npm - $N_MAJOR $N_MINOR"
- run: npm ci
if: steps.npm-version.outputs.major >= 6
- run: npm install
if: steps.npm-version.outputs.major < 6
- run: npm test