We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 719af96 commit 6306602Copy full SHA for 6306602
1 file changed
.github/workflows/deployment.yml
@@ -18,13 +18,15 @@ jobs:
18
steps:
19
- name: ⬇️ Checkout code
20
uses: actions/checkout@v4
21
-
22
- name: ⚙️ Setup Node.js
23
uses: actions/setup-node@v4
24
with:
25
node-version: ${{ env.NODE_VERSION }}
26
cache: 'pnpm'
27
+ - name: ⚙️ Install pnpm
+ uses: pnpm/action-setup@v4
28
+ with:
29
+ version: ${{ env.PNPM_VERSION }}
30
- name: 📦 Cache pnpm store
31
id: pnpm-cache
32
uses: actions/cache@v4
@@ -33,7 +35,6 @@ jobs:
33
35
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
34
36
restore-keys: |
37
${{ runner.os }}-pnpm-
38
lint:
39
name: 🧹 Lint
40
runs-on: ubuntu-latest
@@ -46,7 +47,7 @@ jobs:
46
47
- name: 🔍 Run lint
48
run: pnpm lint
49
typecheck:
- name: 🧪 Type Check
50
+ name: 🔍 Type Check
51
52
needs: setup
53
0 commit comments