We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e7243b commit c9c5bb5Copy full SHA for c9c5bb5
.github/workflows/push.yml
@@ -9,7 +9,7 @@ on:
9
10
env:
11
NODE_VERSION: '20.x'
12
- PNPM_VERSION: '10.x'
+ PNPM_VERSION: 'latest'
13
14
jobs:
15
test-and-build:
@@ -27,12 +27,13 @@ jobs:
27
cache: 'pnpm'
28
29
- name: Setup pnpm
30
- uses: pnpm/action-setup@v2
+ uses: pnpm/action-setup@v4
31
with:
32
version: ${{ env.PNPM_VERSION }}
33
34
- name: Install dependencies
35
run: pnpm install
36
+
37
- name: Build
38
run: pnpm run build
39
@@ -43,5 +44,3 @@ jobs:
43
44
# run: pnpm run test:e2e
45
# - name: Lint
46
# run: pnpm run lint
-
47
0 commit comments