Skip to content

Commit 0851b40

Browse files
committed
chore(deps): Use Node.js v16
1 parent 08692a5 commit 0851b40

File tree

4 files changed

+258
-305
lines changed

4 files changed

+258
-305
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,27 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
node-version: [12.x]
11+
node-version: [16.x]
1212
steps:
13-
- name: 'Checkout repository'
13+
- name: 'Checkout Git repository with history for all branches and tags'
1414
uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 0
17+
1518
- name: 'Use Node.js ${{ matrix.node-version }}'
1619
uses: actions/setup-node@v1
1720
with:
1821
node-version: ${{ matrix.node-version }}
19-
- name: Install, lint, and test
22+
23+
- name: 'Install, lint, and test'
2024
run: |
21-
yarn install
25+
yarn install --frozen-lockfile
2226
yarn lint
2327
yarn test
2428
if: |
2529
contains(github.event.commits[0].message, '[skip ci]') == false &&
2630
contains(github.event.commits[0].message, '[ci skip]') == false
31+
2732
- name: 'Upload coverage reports to Codecov'
2833
uses: codecov/codecov-action@v1.0.5
2934
with:

.github/workflows/merge-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest]
13-
node-version: [12.x]
13+
node-version: [16.x]
1414
if: github.actor == 'dependabot[bot]'
1515
steps:
1616
- name: 'Checkout repository'

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,26 @@
55
"dependencies": {},
66
"description": "",
77
"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",
1313
"eslint-config-prettier": "8.3.0",
1414
"eslint-plugin-prettier": "4.0.0",
1515
"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",
1717
"eslint-plugin-unused-imports": "1.1.5",
1818
"generate-changelog": "1.8.0",
1919
"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",
2222
"nyc": "15.1.0",
2323
"prettier": "2.4.1",
2424
"pretty-quick": "3.1.1",
2525
"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"
2828
},
2929
"engines": {
3030
"node": ">= 10.9",

0 commit comments

Comments
 (0)