Skip to content

Commit

Permalink
refactor: make sure pnpm modules are installed
Browse files Browse the repository at this point in the history
  • Loading branch information
KonsumGandalf committed Apr 26, 2024
1 parent a21232a commit 8c0974d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fetch-depth: 0

- name: test
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8.15.1

Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
uses: actions/cache@v4
with:
path: node_modules
key: cache-node-modules-${{ hashFiles('pnpm-lock.json') }}
key: cache-node-modules-${{ hashFiles('pnpm-lock.yaml') }}

- run: pnpm install --frozen-lockfile

Expand All @@ -66,7 +66,7 @@ jobs:
uses: actions/cache@v4
with:
path: node_modules
key: cache-node-modules-${{ hashFiles('pnpm-lock.json') }}
key: cache-node-modules-${{ hashFiles('pnpm-lock.yaml') }}

- run: pnpm install --frozen-lockfile

Expand All @@ -87,7 +87,7 @@ jobs:
uses: actions/cache@v4
with:
path: node_modules
key: cache-node-modules-${{ hashFiles('pnpm-lock.json') }}
key: cache-node-modules-${{ hashFiles('pnpm-lock.yaml') }}

- run: pnpm install --frozen-lockfile

Expand Down

0 comments on commit 8c0974d

Please sign in to comment.