Skip to content
This repository was archived by the owner on Jun 23, 2026. It is now read-only.

fix(deps): bump audit overrides to clear vite/js-yaml/babel advisories #94

fix(deps): bump audit overrides to clear vite/js-yaml/babel advisories

fix(deps): bump audit overrides to clear vite/js-yaml/babel advisories #94

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: lint / typecheck / test / audit / build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint (Biome)
run: npm run lint
- name: Typecheck (astro check)
run: npm run typecheck
- name: Unit tests (Vitest)
run: npm run test
- name: npm audit (moderate+)
run: npm run audit
- name: Build
run: npm run build