Skip to content

Test on Node 23

Test on Node 23 #174

Workflow file for this run

name: Node Vulnerability Check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: npm vulnerabilities
run: |
npm ci
npm run vulnerabilities
env:
CI: true