Skip to content

chore: add package-lock.json for CI #2

chore: add package-lock.json for CI

chore: add package-lock.json for CI #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: Test (Node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
matrix:
node: ["20", "22"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci --ignore-scripts
- run: npm audit --audit-level=high
- run: npm test
- run: npm run build