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 8c33c23 commit 1d0e386Copy full SHA for 1d0e386
.github/workflows/deploy.yml
@@ -30,17 +30,24 @@ jobs:
30
working-directory: ./kmonadx-wasm
31
run: wasm-pack build --target web
32
33
+ - name: Install pnpm
34
+ uses: pnpm/action-setup@v4
35
+ with:
36
+ version: 9
37
+ # don't run install yet because we want to use the cache
38
+ run_install: false
39
+
40
- name: Setup Node.js
41
uses: actions/setup-node@v4
42
with:
43
node-version: '20'
- cache: 'npm'
44
+ cache: 'pnpm'
45
46
- name: Install dependencies
- run: npm ci
47
+ run: pnpm install
48
49
- name: Build website
- run: npm run build
50
+ run: pnpm run build
51
52
- name: Upload artifact
53
uses: actions/upload-pages-artifact@v3
0 commit comments