From 2273fe543f79013d09c07a885fb03bf0ebb1964c Mon Sep 17 00:00:00 2001 From: Redacted-Coder Date: Tue, 8 Sep 2026 17:59:58 -0400 Subject: [PATCH] ci: verify Phase 1 install, tests and build --- .github/workflows/phase1.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/phase1.yml diff --git a/.github/workflows/phase1.yml b/.github/workflows/phase1.yml new file mode 100644 index 0000000..401753a --- /dev/null +++ b/.github/workflows/phase1.yml @@ -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