File tree 2 files changed +19
-20
lines changed
2 files changed +19
-20
lines changed Original file line number Diff line number Diff line change @@ -5,31 +5,30 @@ name: CI Build
5
5
6
6
on :
7
7
pull_request :
8
- branches : [ main ]
8
+ branches : [main]
9
9
10
10
jobs :
11
11
build :
12
-
13
- runs-on : ubuntu-latest
14
-
12
+ runs-on : ${{ matrix.os }}
15
13
strategy :
16
14
matrix :
17
- node-version : [12.x, 14.x, 16.x]
15
+ os : [ubuntu-latest, macos-latest]
16
+ node-version : [17.x]
18
17
include :
19
- - node-version : 14 .x
18
+ - node-version : 17 .x
20
19
reportCoverage : true
21
20
22
21
steps :
23
- - uses : actions/checkout@v3
24
- - name : Use Node.js ${{ matrix.node-version }}
25
- uses : actions/setup-node@v3
26
- with :
27
- node-version : ${{ matrix.node-version }}
28
- - run : npm version
29
- - run : npm install
30
- - run : npm run generate-docs
31
- - run : npm test
32
- - run : npm run semantic-release-dry-run
33
- - name : Codecov
34
-
35
- if : matrix.reportCoverage
22
+ - uses : actions/checkout@v3
23
+ - name : Use Node.js ${{ matrix.node-version }}
24
+ uses : actions/setup-node@v3
25
+ with :
26
+ node-version : ${{ matrix.node-version }}
27
+ - run : npm version
28
+ - run : npm install
29
+ - run : npm run generate-docs
30
+ - run : npm test
31
+ - run : npm run semantic-release-dry-run
32
+ - name : Codecov
33
+
34
+ if : matrix.reportCoverage
Original file line number Diff line number Diff line change 75
75
"tsd-jsdoc" : " 2.5.0"
76
76
},
77
77
"engines" : {
78
- "node" : " >=16 "
78
+ "node" : " >=17 "
79
79
},
80
80
"release" : {
81
81
"branches" : [
You can’t perform that action at this time.
0 commit comments