Skip to content

Commit 10fa254

Browse files
committed
chore: upgrade tasks to node 20
Signed-off-by: lstocchi <[email protected]>
1 parent d225d12 commit 10fa254

File tree

12 files changed

+4614
-3550
lines changed

12 files changed

+4614
-3550
lines changed

.eslintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"jasmine": true
77
},
88
"extends": [
9-
"airbnb-base",
109
"eslint:recommended",
1110
"plugin:@typescript-eslint/eslint-recommended",
1211
"plugin:@typescript-eslint/recommended",
@@ -22,6 +21,7 @@
2221
"sourceType": "module"
2322
},
2423
"plugins": [
24+
"airbnb-base",
2525
"@typescript-eslint",
2626
"prettier",
2727
"header",

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
node: [ '16', '14', '10' ]
20+
node: [ '20', '16' ]
2121
name: Node ${{ matrix.node }}
2222

2323
steps:
@@ -39,7 +39,7 @@ jobs:
3939
- name: Setup Node.js environment
4040
uses: actions/setup-node@v3
4141
with:
42-
node-version: '10.x'
42+
node-version: '20.x'
4343
- run: npm run setup
4444
- run: npm install
4545
- run: npm run build
@@ -53,7 +53,7 @@ jobs:
5353
- name: Setup Node.js environment
5454
uses: actions/setup-node@v3
5555
with:
56-
node-version: '10.x'
56+
node-version: '20.x'
5757
- run: npm run setup
5858
- run: npm install
5959
- run: npm run build

0 commit comments

Comments
 (0)