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 c0058fb commit ce1dafcCopy full SHA for ce1dafc
.github/workflows/check-dist.yml
@@ -18,18 +18,24 @@ jobs:
18
steps:
19
- uses: actions/checkout@v4
20
21
- - name: Setup Node
+ - uses: pnpm/action-setup@v4
22
+ name: Install pnpm
23
+ with:
24
+ version: 10
25
+ run_install: false
26
+
27
+ - name: Install Node.js
28
uses: actions/setup-node@v4
29
with:
- node-version-file: .nvmrc
- cache: npm
30
+ node-version: 20
31
+ cache: 'pnpm'
32
33
- name: Install dependencies
- run: npm ci
34
+ run: pnpm install
35
36
- name: Rebuild the dist/ directory
37
run: |
- npm run build
38
+ pnpm run build
39
40
- name: Compare the expected and actual dist/ directories
41
0 commit comments