Skip to content

security(deps-dev): bump @types/node from 20.19.9 to 20.19.10 #69

security(deps-dev): bump @types/node from 20.19.9 to 20.19.10

security(deps-dev): bump @types/node from 20.19.9 to 20.19.10 #69

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linting and type checking
run: |
npm run check
npm run typecheck
- name: Run tests with coverage
run: npm run test:coverage
- name: Build
run: npm run build