ci: verify Phase 1 install, tests and build

This commit is contained in:
Redacted-Coder 2026-09-08 17:59:58 -04:00 committed by GitHub
parent ea74dd6f12
commit 2273fe543f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 22 additions and 0 deletions

22
.github/workflows/phase1.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Phase 1 checks
on: [push, pull_request]
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
timeout-minutes: 20
env:
PUPPETEER_SKIP_DOWNLOAD: 'true'
GEV_FREE_ONLY: '1'
GEV_REQUIRE_ALLOCATION_GATE: '1'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24.19.0'
cache: npm
- run: npm ci
- run: npm test
- run: npm run test:phase1
- run: npm run build