fix(ci): refresh lockfile in PR jobs

This commit is contained in:
dotta
2026-03-23 19:23:10 -05:00
parent 2cc2d4420d
commit 85d2c54d53
2 changed files with 47 additions and 5 deletions

View File

@@ -56,6 +56,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
@@ -68,6 +70,14 @@ jobs:
node-version: 24
cache: pnpm
- name: Refresh lockfile when manifests change
run: |
changed="$(git diff --name-only "${{ github.event.pull_request.base.sha }}" "${{ github.event.pull_request.head.sha }}")"
manifest_pattern='(^|/)package\.json$|^pnpm-workspace\.yaml$|^\.npmrc$|^pnpmfile\.(cjs|js|mjs)$'
if printf '%s\n' "$changed" | grep -Eq "$manifest_pattern"; then
pnpm install --lockfile-only --ignore-scripts --no-frozen-lockfile
fi
- name: Install dependencies
run: pnpm install --frozen-lockfile
@@ -94,6 +104,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
@@ -106,6 +118,14 @@ jobs:
node-version: 24
cache: pnpm
- name: Refresh lockfile when manifests change
run: |
changed="$(git diff --name-only "${{ github.event.pull_request.base.sha }}" "${{ github.event.pull_request.head.sha }}")"
manifest_pattern='(^|/)package\.json$|^pnpm-workspace\.yaml$|^\.npmrc$|^pnpmfile\.(cjs|js|mjs)$'
if printf '%s\n' "$changed" | grep -Eq "$manifest_pattern"; then
pnpm install --lockfile-only --ignore-scripts --no-frozen-lockfile
fi
- name: Install dependencies
run: pnpm install --frozen-lockfile