Skip to content

Fix Actions install workflow #5

Fix Actions install workflow

Fix Actions install workflow #5

Workflow file for this run

name: CI
on:
push:
branches:
- master
- dev
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
- 22
- 24
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm install
- run: npm audit --audit-level=high
- run: npm run build
- run: npm test
- run: npm pack --dry-run