File tree Expand file tree Collapse file tree 3 files changed +24801
-5253
lines changed Expand file tree Collapse file tree 3 files changed +24801
-5253
lines changed Original file line number Diff line number Diff line change 1
1
name : Node CI
2
2
3
- on : [push]
3
+ on : [push, workflow_dispatch ]
4
4
5
5
jobs :
6
6
build :
7
-
8
7
runs-on : ubuntu-latest
9
-
10
8
strategy :
11
9
matrix :
12
- node-version : [14.x]
13
-
10
+ node-version :
11
+ - 14.x
12
+ - 15.x
14
13
steps :
15
- - uses : actions/checkout@v2.3.4
16
-
17
- - name : Use Node.js ${{ matrix.node-version }}
18
- uses : actions/setup-node@v1.4.4
19
- with :
20
- node-version : ${{ matrix.node-version }}
14
+ - uses : actions/checkout@v2.3.4
15
+
16
+ - name : Use Node.js ${{ matrix.node-version }}
17
+ uses : actions/setup-node@v1.4.4
18
+ with :
19
+ node-version : ${{ matrix.node-version }}
21
20
22
- - name : npm install, build, and test
23
- run : |
24
- npm ci
25
- npm run build-storybook
26
- - name : Deploy
27
- uses : JamesIves/github-pages-deploy-action@3.7.1
28
- with :
29
- ACCESS_TOKEN : ${{ secrets.ACCESS_TOKEN }}
30
- BRANCH : gh-pages
31
- FOLDER : storybook-static
32
- env :
33
- CI : true
21
+ - name : npm install, build, and test
22
+ run : |
23
+ npm ci
24
+ npm run build-storybook
25
+ - name : Deploy
26
+ uses : JamesIves/github-pages-deploy-action@3.7.1
27
+ with :
28
+ ACCESS_TOKEN : ${{ secrets.ACCESS_TOKEN }}
29
+ BRANCH : gh-pages
30
+ FOLDER : storybook-static
31
+ env :
32
+ CI : true
You can’t perform that action at this time.
0 commit comments