We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e4bb67 commit 967a27cCopy full SHA for 967a27c
1 file changed
.github/workflows/main.yml
@@ -9,15 +9,18 @@ jobs:
9
steps:
10
- name: Checkout
11
uses: actions/checkout@v2
12
+ - uses: pnpm/action-setup@v2
13
+ with:
14
+ version: 7
15
- name: Use Node.js
- uses: actions/setup-node@v2-beta
16
+ uses: actions/setup-node@v3
17
with:
18
node-version: 14
- cache: yarn
19
+ cache: pnpm
20
- name: Install
- run: yarn
21
+ run: pnpm i --frozen-lockfile
22
- name: Build
- run: yarn export
23
+ run: pnpm export
24
- name: Deploy
25
uses: peaceiris/actions-gh-pages@v3
26
0 commit comments