File tree Expand file tree Collapse file tree 1 file changed +16
-17
lines changed Expand file tree Collapse file tree 1 file changed +16
-17
lines changed Original file line number Diff line number Diff line change 12
12
CI : true
13
13
jobs :
14
14
publish :
15
- name : Publish
15
+ name : Publish Docs to TCB
16
16
runs-on : ubuntu-latest
17
+
18
+ strategy :
19
+ fail-fast : false
20
+ matrix :
21
+ node-version : [16.x]
22
+
17
23
steps :
18
- - uses : actions/checkout@v4
24
+ - uses : actions/checkout@v3
25
+ - name : Install pnpm
26
+
19
27
with :
20
- ref : ${{ github.head_ref }}
28
+ version : 8
21
29
22
- - name : Cache pnpm modules and build
23
- uses : actions/cache @v3
30
+ - name : Use Node.js ${{ matrix.node-version }}
31
+ uses : actions/setup-node @v3
24
32
with :
25
- path : |
26
- node_modules
27
- key : ${{ runner.os }}-tcb
28
- restore-keys : |
29
- ${{ runner.os }}-
33
+ node-version : ${{ matrix.node-version }}
34
+ cache : ' pnpm'
30
35
31
- - name : install
32
- uses : pnpm/action-setup@v2
33
- with :
34
- version : 7
35
- run_install : |
36
- - recursive: true
37
- args: [--frozen-lockfile, --strict-peer-dependencies]
36
+ - run : pnpm start
38
37
39
38
- name : Build
40
39
run : pnpm run build:doc
You can’t perform that action at this time.
0 commit comments