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

Bump actions/configure-pages from 5 to 6 #12

Bump actions/configure-pages from 5 to 6

Bump actions/configure-pages from 5 to 6 #12

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
verify:
name: verify (node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20", "22"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm install
- run: npm run lint
- run: npm run typecheck
- run: npm run coverage
- run: npm run build
- run: npm run demo
- run: npm run smoke
- run: npm run prerender
- run: npm audit --audit-level=high