We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fbd40f commit 22eac6cCopy full SHA for 22eac6c
1 file changed
.github/workflows/test.yaml
@@ -23,4 +23,19 @@ jobs:
23
contents: read
24
steps:
25
- uses: actions/checkout@v4
26
+
27
+ - name: Install pnpm
28
+ uses: pnpm/action-setup@v4
29
+ with:
30
+ run_install: false
31
32
+ - name: Setup Node.js
33
+ uses: actions/setup-node@v4
34
35
+ node-version: 22
36
+ cache: 'pnpm'
37
38
+ - name: Install dependencies
39
+ run: pnpm install --frozen-lockfile
40
41
- run: pnpm validate-links --soft-warnings
0 commit comments