File tree 4 files changed +258
-305
lines changed
4 files changed +258
-305
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
matrix :
10
10
os : [ubuntu-latest]
11
- node-version : [12 .x]
11
+ node-version : [16 .x]
12
12
steps :
13
- - name : ' Checkout repository'
13
+ - name : ' Checkout Git repository with history for all branches and tags '
14
14
uses : actions/checkout@v2
15
+ with :
16
+ fetch-depth : 0
17
+
15
18
- name : ' Use Node.js ${{ matrix.node-version }}'
16
19
uses : actions/setup-node@v1
17
20
with :
18
21
node-version : ${{ matrix.node-version }}
19
- - name : Install, lint, and test
22
+
23
+ - name : ' Install, lint, and test'
20
24
run : |
21
- yarn install
25
+ yarn install --frozen-lockfile
22
26
yarn lint
23
27
yarn test
24
28
if : |
25
29
contains(github.event.commits[0].message, '[skip ci]') == false &&
26
30
contains(github.event.commits[0].message, '[ci skip]') == false
31
+
27
32
- name : ' Upload coverage reports to Codecov'
28
33
uses : codecov/codecov-action@v1.0.5
29
34
with :
Original file line number Diff line number Diff line change 10
10
strategy :
11
11
matrix :
12
12
os : [ubuntu-latest]
13
- node-version : [12 .x]
13
+ node-version : [16 .x]
14
14
if : github.actor == 'dependabot[bot]'
15
15
steps :
16
16
- name : ' Checkout repository'
Original file line number Diff line number Diff line change 5
5
"dependencies" : {},
6
6
"description" : " " ,
7
7
"devDependencies" : {
8
- "@types/jasmine" : " 3.9.1 " ,
9
- "@types/node" : " 16.10 .2" ,
10
- "@typescript-eslint/eslint-plugin" : " 4.32 .0" ,
11
- "@typescript-eslint/parser" : " 4.32 .0" ,
12
- "eslint" : " 7.32.0 " ,
8
+ "@types/jasmine" : " 3.10.0 " ,
9
+ "@types/node" : " 16.11 .2" ,
10
+ "@typescript-eslint/eslint-plugin" : " 5.1 .0" ,
11
+ "@typescript-eslint/parser" : " 5.1 .0" ,
12
+ "eslint" : " 8.0.1 " ,
13
13
"eslint-config-prettier" : " 8.3.0" ,
14
14
"eslint-plugin-prettier" : " 4.0.0" ,
15
15
"eslint-plugin-sort-keys-fix" : " 1.1.2" ,
16
- "eslint-plugin-typescript-sort-keys" : " 1.8 .0" ,
16
+ "eslint-plugin-typescript-sort-keys" : " 2.0 .0" ,
17
17
"eslint-plugin-unused-imports" : " 1.1.5" ,
18
18
"generate-changelog" : " 1.8.0" ,
19
19
"husky" : " 4.3.8" ,
20
- "jasmine" : " 3.9 .0" ,
21
- "lint-staged" : " 11.1.2 " ,
20
+ "jasmine" : " 3.10 .0" ,
21
+ "lint-staged" : " 11.2.3 " ,
22
22
"nyc" : " 15.1.0" ,
23
23
"prettier" : " 2.4.1" ,
24
24
"pretty-quick" : " 3.1.1" ,
25
25
"rimraf" : " 3.0.2" ,
26
- "ts-node" : " 10.2.1 " ,
27
- "typescript" : " 4.4.3 "
26
+ "ts-node" : " 10.3.0 " ,
27
+ "typescript" : " 4.4.4 "
28
28
},
29
29
"engines" : {
30
30
"node" : " >= 10.9" ,
You can’t perform that action at this time.
0 commit comments