File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,20 +32,20 @@ jobs:
32
32
uses : actions/checkout@v3
33
33
with :
34
34
fetch-depth : 0 # Not needed if lastUpdated is not enabled
35
- - uses : pnpm/action-setup@v2 # Uncomment this if you're using pnpm
35
+ # - uses: pnpm/action-setup@v2 # Uncomment this if you're using pnpm
36
36
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun
37
37
- name : Setup Node
38
38
uses : actions/setup-node@v3
39
39
with :
40
40
node-version : 18
41
- cache : pnpm # or pnpm / yarn
41
+ cache : npm # or pnpm / yarn
42
42
- name : Setup Pages
43
43
uses : actions/configure-pages@v3
44
44
- name : Install dependencies
45
- run : pnpm install # or pnpm install / yarn install / bun install
45
+ run : npm install # or pnpm install / yarn install / bun install
46
46
- name : Build with Slidev
47
47
run : |
48
- pnpm run build # or pnpm docs:build / yarn docs:build / bun run docs:build
48
+ npm run build # or pnpm docs:build / yarn docs:build / bun run docs:build
49
49
- name : Upload artifact
50
50
uses : actions/upload-pages-artifact@v2
51
51
with :
You can’t perform that action at this time.
0 commit comments