@@ -45,23 +45,23 @@ jobs:
4545 ${{ runner.os }}-pnpm-store-
4646
4747 - name : Mark repo as safe for git inside container
48- run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" pnpm shell git config --global --add safe.directory /workspace
48+ run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" bash scripts/repro/exec.sh git config --global --add safe.directory /workspace
4949
5050 - name : Install deps (container)
51- run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" pnpm ci: install
51+ run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" bash scripts/repro/exec.sh pnpm install --frozen-lockfile
5252
5353 - name : Disable turbo telemetry (container)
54- run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" pnpm turbo: telemetry: disable
54+ run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" bash scripts/repro/exec.sh pnpm turbo telemetry disable
5555
5656 - name : Check formatting (container)
57- run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" pnpm format: check
57+ run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" bash scripts/repro/exec.sh pnpm prettier . -- check
5858
5959 - name : Build (container)
60- run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" pnpm build -- --force
60+ run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" bash scripts/repro/exec.sh pnpm turbo build --force
6161
6262 - name : Test (container)
63- run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" pnpm test
63+ run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" bash scripts/repro/exec.sh pnpm turbo test
6464
6565 - name : Require changeset to be present in PR (container)
6666 if : github.event.pull_request.user.login != 'dependabot[bot]'
67- run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" pnpm shell pnpm changeset status --since origin/main
67+ run : REPRO_PNPM_STORE="${{ env.REPRO_PNPM_STORE }}" bash scripts/repro/exec.sh pnpm changeset status --since origin/main
0 commit comments