Fix CI: install jq/kustomize, fetch-depth 2 for deploy-production
Some checks failed
CI / changes (push) Successful in 5s
CI / lint-and-test (push) Successful in 41s
Deploy Production / deploy (push) Failing after 5s
CI / build (push) Has been skipped

node:20-bookworm doesn't include jq or kustomize. Also need
fetch-depth: 2 so HEAD~1 exists for turbo's change detection.
This commit is contained in:
Julia McGhee
2026-03-21 16:34:22 +00:00
parent 0b69d6c6f4
commit 22488d5bf5
3 changed files with 8 additions and 0 deletions

View File

@@ -20,6 +20,8 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- run: apt-get update && apt-get install -y jq
- name: Detect changed apps - name: Detect changed apps
id: filter id: filter
run: | run: |

View File

@@ -10,6 +10,8 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: apt-get update && apt-get install -y jq kustomize
- run: corepack enable && corepack prepare pnpm@latest --activate - run: corepack enable && corepack prepare pnpm@latest --activate
- run: pnpm install --frozen-lockfile - run: pnpm install --frozen-lockfile

View File

@@ -9,6 +9,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
fetch-depth: 2
- run: apt-get update && apt-get install -y jq kustomize
- run: corepack enable && corepack prepare pnpm@latest --activate - run: corepack enable && corepack prepare pnpm@latest --activate