Skip to content

fix(build): add Node 22 and ubuntu-24.04, drop Node 21 #3119

fix(build): add Node 22 and ubuntu-24.04, drop Node 21

fix(build): add Node 22 and ubuntu-24.04, drop Node 21 #3119

Workflow file for this run

---
# This workflow will do a clean install of node dependencies, cache/restore
# them, build the source code and run tests across different versions of node
# For more information see:
# https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
merge_group:
jobs:
build:
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x, 22.x]
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04 windows-2019, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run pretest
- run: npm run test