Update GitHub Actions workflow to install dependencies without frozen lockfile

- Modified the dependency installation step in the CI workflow to remove the frozen lockfile option, allowing for more flexibility during installations.
This commit is contained in:
Luke Hagar
2025-07-23 16:24:22 -05:00
parent 645ccf1109
commit 41f34e4de7

View File

@@ -25,7 +25,7 @@ jobs:
cache: 'pnpm' cache: 'pnpm'
- name: Install dependencies - name: Install dependencies
run: pnpm install --frozen-lockfile run: pnpm install
- name: Run workspace tests - name: Run workspace tests
run: pnpm -r test run: pnpm -r test