Skip to content

chore(deps): apply npm audit fix (#52) #150

chore(deps): apply npm audit fix (#52)

chore(deps): apply npm audit fix (#52) #150

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, 24]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Check formatting
run: npm run format:check
- name: Build
run: npm run build
- name: Test
run: npm test