Skip to content

Use Node.js 22

Use Node.js 22 #66

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
- name: npm install, build, and test
run: |
node --version
npm --version
npm install
npm run build --if-present
npm test
env:
CI: true