We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8c60b7 commit e52ac4eCopy full SHA for e52ac4e
.github/workflows/lint.yml
@@ -14,18 +14,18 @@ jobs:
14
- name: Checkout code
15
uses: actions/checkout@v4
16
17
+ - name: Install pnpm
18
+ uses: pnpm/action-setup@v4
19
+ with:
20
+ version: 8.15.4 # Using the version from packageManager in package.json
21
+ run_install: false
22
+
23
- name: Setup Node.js
24
uses: actions/setup-node@v4
25
with:
26
node-version: '20.3.0'
27
cache: 'pnpm'
28
- - name: Enable Corepack
- run: corepack enable
-
- - name: Setup pnpm
- run: corepack prepare pnpm@latest --activate
29
- name: Install dependencies
30
run: pnpm install --frozen-lockfile
31
0 commit comments