Skip to content

Commit

Permalink
GitHub Action: fix pnpm-lock path
Browse files Browse the repository at this point in the history
  • Loading branch information
bpierre committed Apr 9, 2024
1 parent 8ce4bf0 commit a77ae82
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
with:
node-version-file: '.node-version'
cache: 'pnpm'
cache-dependency-path: 'contracts/pnpm-lock.yaml'
cache-dependency-path: 'pnpm-lock.yaml'

- name: Install dependencies
run: pnpm install
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
with:
node-version-file: '.node-version'
cache: 'pnpm'
cache-dependency-path: 'contracts/pnpm-lock.yaml'
cache-dependency-path: 'pnpm-lock.yaml'

- name: Install dependencies
run: pnpm install
Expand Down Expand Up @@ -169,11 +169,12 @@ jobs:
with:
version: 8

- uses: actions/setup-node@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'pnpm'
cache-dependency-path: 'contracts/pnpm-lock.yaml'
cache-dependency-path: 'pnpm-lock.yaml'

- name: Install dependencies
run: pnpm install
Expand Down

0 comments on commit a77ae82

Please sign in to comment.