Skip to content

Bump the dev-dependencies group with 2 updates #117

Bump the dev-dependencies group with 2 updates

Bump the dev-dependencies group with 2 updates #117

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: '24.x'
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Run tests
run: npm test
- name: Check formatting
run: npx prettier --check 'src/**/*.ts' '*.json' '.prettierrc'
- name: Security audit
run: npm audit --audit-level=high