Skip to content

[security] fix vulnerabilities reported by npm audit #17

[security] fix vulnerabilities reported by npm audit

[security] fix vulnerabilities reported by npm audit #17

Workflow file for this run

name: Build
on:
pull_request:
types:
- opened
- synchronize
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- "16"
- "18"
- "20"
- "22"
name: Node ${{ matrix.node }}
steps:
- name: Install dependencies
run: sudo apt-get install -y tcl-dev
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm install
- run: npm test