fix(ci): repair github node 24 workflows

Install pnpm before enabling setup-node's pnpm cache in the Cloudflare deploy job, and make the Node 24 check workflow self-contained by providing the public build URLs directly.

These fixes address the first GitHub-hosted failures that surfaced after the Node 24 migration push without changing the application runtime.
This commit is contained in:
ThatGuySam 2026-03-15 12:58:18 -05:00
parent fcda9f0a02
commit edcc260faa
2 changed files with 9 additions and 9 deletions

View file

@ -12,6 +12,9 @@ jobs:
build:
runs-on: ubuntu-latest
env:
PUBLIC_URL: https://doesitarm.com
PUBLIC_API_DOMAIN: https://api.doesitarm.com
strategy:
matrix:
@ -30,9 +33,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: |
touch .env
echo ${{ secrets.GH_ENV }} >> .env
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test