File tree Expand file tree Collapse file tree 6 files changed +19
-10
lines changed Expand file tree Collapse file tree 6 files changed +19
-10
lines changed Original file line number Diff line number Diff line change 49
49
50
50
- name : Install dependencies
51
51
run : pnpm install
52
+
52
53
- name : Build VuePress Site
53
54
run : pnpm build
55
+
54
56
- name : Deploy to GitHub Pages
55
57
uses : crazy-max/ghaction-github-pages@v3
56
58
with :
Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ jobs:
43
43
44
44
- name : Install dependencies
45
45
run : pnpm install
46
+
46
47
- name : Build VuePress Site
47
48
run : pnpm build
48
49
49
-
50
50
# please check out the docs of the workflow for more details
51
51
# @see https://github.com/crazy-max/ghaction-github-pages
52
52
- name : Deploy to GitHub Pages
Original file line number Diff line number Diff line change 1
- # Workflow to lint Markdown provided
1
+ # Workflow to lint Markdown provided
2
2
3
3
name : Lint
4
4
40
40
restore-keys : |
41
41
${{ runner.os }}-pnpm-store-
42
42
43
- - name : Run Linting
44
- run : pnpm lint
45
-
43
+ - name : Run Linting
44
+ run : pnpm lint
Original file line number Diff line number Diff line change 1
- # Workflow to test the spelling within the PR
1
+ # Workflow to test the spelling within the PR
2
2
3
- name : Spell Checker
3
+ name : Spell Checker
4
4
5
5
on :
6
6
pull_request :
7
7
# Not specifying a type, lets it run on an PR update
8
8
9
9
jobs :
10
10
spellcheck :
11
- runs-on : ubuntu-latest
12
- name : Spellcheck
11
+ runs-on : ubuntu-latest
12
+ name : Spellcheck
13
13
steps :
14
14
- uses : actions/checkout@v3
15
+
15
16
- uses : tbroadley/spellchecker-cli-action@v1
16
17
with :
17
- quiet : true # Dont output anything if the file contains no spelling mistakes
18
+ quiet : true # Dont output anything if the file contains no spelling mistakes
18
19
files : " docs/**/**/*.md !docs/.vuepress"
19
20
language : " en-US"
20
21
dictionaries : " ./tools/spell-checker-dictionary.txt"
Original file line number Diff line number Diff line change @@ -14,10 +14,12 @@ jobs:
14
14
- uses : actions/checkout@v3
15
15
with :
16
16
fetch-depth : 0
17
+
17
18
- name : Setup Node.js
18
19
uses : actions/setup-node@v3
19
20
with :
20
21
node-version : ' 16'
22
+
21
23
- name : Setup pnpm
22
24
# You may pin to the exact commit or the version.
23
25
# uses: pnpm/action-setup@10693b3829bf86eb2572aef5f3571dcf5ca9287d
28
30
- recursive: true
29
31
args: [--frozen-lockfile, --strict-peer-dependencies]
30
32
- args: [--global, prettier, gulp]
33
+
31
34
- name : Install Dependencies
32
35
run : pnpm install
36
+
33
37
- name : Test Build
34
38
run : pnpm build
Original file line number Diff line number Diff line change @@ -12,15 +12,18 @@ jobs:
12
12
13
13
steps :
14
14
- uses : actions/checkout@v3
15
+
15
16
- name : Setup Node.js
16
17
uses : actions/setup-node@v3
17
18
with :
18
19
node-version : ' 16'
20
+
19
21
- uses : pnpm/action-setup@v4
20
22
with :
21
23
version : 6.0.2
22
24
run_install : |
23
25
- recursive: true
24
26
args: [--frozen-lockfile, --strict-peer-dependencies]
27
+
25
28
- name : Test Build
26
29
run : pnpm build
You can’t perform that action at this time.
0 commit comments