Add static site QA checks
All checks were successful
Deploy to Pages / build (pull_request) Successful in 5m22s
Deploy to Pages / build (push) Successful in 3m59s

This commit is contained in:
Andras Schmelczer 2026-05-25 13:12:33 +01:00
parent f27e9ec3fd
commit 0be50b6c24
5 changed files with 564 additions and 2 deletions

View file

@ -35,8 +35,13 @@ jobs:
exit 1
fi
- name: Build
run: npm run build
- name: Typecheck
run: npm run typecheck
- name: Build & QA
run: |
npx playwright install chromium
npm run qa
- name: Copy build to host pages mount
if: github.event_name == 'push' && github.ref == 'refs/heads/main'