Move cache env vars to workflow level, remove debug step
All checks were successful
CI / lint-and-test (push) Successful in 35s
CI / build (push) Successful in 20s

Move PNPM_STORE_DIR and COREPACK_HOME to workflow-level env
which may propagate differently than job-level in act_runner.
This commit is contained in:
Julia McGhee
2026-03-21 17:48:59 +00:00
parent 1ef3383ba1
commit dc46f8c54a
3 changed files with 12 additions and 22 deletions

View File

@@ -4,12 +4,13 @@ on:
pull_request:
types: [opened, synchronize, reopened]
env:
PNPM_STORE_DIR: /pnpm-store
COREPACK_HOME: /pnpm-store/.corepack
jobs:
deploy:
runs-on: ubuntu-latest
env:
PNPM_STORE_DIR: /pnpm-store
COREPACK_HOME: /pnpm-store/.corepack
steps:
- uses: actions/checkout@v4