Skip to content

Fix esbuild vulnerability by upgrading vitest to v3 #13

Fix esbuild vulnerability by upgrading vitest to v3

Fix esbuild vulnerability by upgrading vitest to v3 #13

Workflow file for this run

name: CI
on:
push:
branches: [main, "release/*"]
pull_request:
branches: [main, "release/*"]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run format:check
- run: npm run build
- run: npm run typecheck
- run: npm test