File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ on: push
4
4
5
5
jobs :
6
6
test :
7
- runs-on : ubuntu-20 .04
7
+ runs-on : ubuntu-22 .04
8
8
strategy :
9
9
matrix :
10
- node-version : [14, 16 ]
10
+ node-version : [18 ]
11
11
steps :
12
12
- uses : actions/checkout@v3
13
13
- name : Use Node.js ${{ matrix.node-version }}
@@ -19,17 +19,17 @@ jobs:
19
19
env :
20
20
NODE_AUTH_TOKEN : ${{secrets.NPM_READ_TOKEN}}
21
21
- run : npm run lint
22
- - run : npm test
22
+ - run : npm run test
23
23
24
24
publish :
25
25
needs : test
26
- runs-on : ubuntu-20 .04
26
+ runs-on : ubuntu-22 .04
27
27
if : startsWith(github.ref, 'refs/tags/v')
28
28
steps :
29
29
- uses : actions/checkout@v3
30
30
- uses : actions/setup-node@v3
31
31
with :
32
- node-version : 16
32
+ node-version : 18
33
33
registry-url : https://npm.pkg.github.com/
34
34
- run : npm ci
35
35
env :
You can’t perform that action at this time.
0 commit comments