Skip to content

Commit

Permalink
fix(ci): 🐛 fix pnpm install failures
Browse files Browse the repository at this point in the history
  • Loading branch information
AkashRajpurohit committed Mar 16, 2024
1 parent 57f7381 commit 12e880f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Install dependencies ⏬
run: pnpm install
run: pnpm install --no-frozen-lockfile

- name: Build ⏰
run: pnpm build
run: pnpm run build
env:
NODE_ENV: production

- name: Test 🔫
run: pnpm test:coverage
run: pnpm run test:coverage

- name: Report Coverage 📝
if: always() # Also generate the report if tests are failing
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 7
version: 8
run_install: false

- name: Get pnpm store directory 🏪
Expand All @@ -117,7 +117,7 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Install dependencies ⏬
run: pnpm install
run: pnpm install --no-frozen-lockfile

- name: Build ⏰
run: pnpm build
Expand Down

0 comments on commit 12e880f

Please # to comment.