Skip to content

Use Node.js 22 for tests #55

Use Node.js 22 for tests

Use Node.js 22 for tests #55

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Node.js setup
uses: actions/setup-node@v4
with:
node-version: 22
- name: Display Node.js and npm informations
run: |
echo "node version $(node -v) running"
echo "npm version $(npm -v) running"
- name: Install dependencies
run: npm install
- name: "Unit tests"
run: "npm run test"
- name: "Build"
run: "npm run build"