File tree Expand file tree Collapse file tree 3 files changed +8375
-9218
lines changed Expand file tree Collapse file tree 3 files changed +8375
-9218
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
16
16
17
17
steps :
18
18
- name : Checkout
19
- uses : actions/checkout@v2
19
+ uses : actions/checkout@v3
20
20
21
21
- name : Use Node.js ${{ matrix.node-version }}
22
- uses : actions/setup-node@v1
22
+ uses : actions/setup-node@v3
23
23
with :
24
24
node-version : ${{ matrix.node-version }}
25
25
31
31
32
32
- name : Test
33
33
run : npm test
34
+
35
+ - name : Test build
36
+ run : npm run build
Original file line number Diff line number Diff line change @@ -11,18 +11,19 @@ jobs:
11
11
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v1
14
+ uses : actions/checkout@v3
15
15
16
16
- name : Setup Node.js
17
- uses : actions/setup-node@v1
17
+ uses : actions/setup-node@v3
18
18
with :
19
- node-version : 14
19
+ node-version : ' 18.x '
20
20
registry-url : ' https://registry.npmjs.org'
21
21
22
22
- name : Install and Build
23
23
run : |
24
24
npm install
25
25
npm run build
26
+
26
27
- name : Publish on NPM
27
28
run : npm publish --access public
28
29
env :
You can’t perform that action at this time.
0 commit comments