Skip to content

fix: convert GitHub Pages workflow to CI-only #66

fix: convert GitHub Pages workflow to CI-only

fix: convert GitHub Pages workflow to CI-only #66

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm audit --omit=dev
- run: npm run lint
- run: npm test
- run: npm run build