-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
uses: actions/setup-node@v1 | ||
with: | ||
# 选择要使用的 node 版本 | ||
node-version: '16' | ||
node-version: "16" | ||
|
||
- name: Instal pnpm | ||
uses: pnpm/[email protected] | ||
|
@@ -31,7 +31,7 @@ jobs: | |
|
||
# 安装依赖 | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile false | ||
run: pnpm install | ||
|
||
# 运行构建脚本 | ||
- name: Build VuePress site | ||
|
@@ -48,4 +48,4 @@ jobs: | |
build_dir: docs/.vuepress/dist | ||
env: | ||
# @see https://docs.github.com/cn/actions/reference/authentication-in-a-workflow#about-the-github_token-secret | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |