Skip to content

chore(deps-dev): bump lint-staged from 16.3.2 to 16.4.0 #82

chore(deps-dev): bump lint-staged from 16.3.2 to 16.4.0

chore(deps-dev): bump lint-staged from 16.3.2 to 16.4.0 #82

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Lint, Check & Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Security audit
run: npm audit --omit=dev --audit-level=moderate
- name: Type check
run: npx astro check
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Build
run: npm run build
- name: Check internal links
run: npm run check-links
- name: Lighthouse CI
run: npx @lhci/cli@0.15 autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}