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 8c047e7 commit 4e06ed0Copy full SHA for 4e06ed0
.github/workflows/deploy.yml
@@ -13,15 +13,16 @@ jobs:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v4
16
+ - uses: pnpm/action-setup@v4
17
- uses: actions/setup-node@v4
18
with:
- node-version: 18
19
- cache: npm
+ node-version: 20
20
+ registry-url: https://registry.npmjs.org
21
22
- name: Install dependencies
- run: npm ci
23
+ run: pnpm install --frozen-lockfile
24
- name: Build website
- run: npm run build
25
+ run: pnpm run build
26
27
# Popular action to deploy to GitHub Pages:
28
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
0 commit comments