Skip to content

Commit 72ea670

Browse files
committed
Merge branch 'main' into rimraf_updates
2 parents b8b4efe + efbe3a8 commit 72ea670

File tree

10 files changed

+296
-363
lines changed

10 files changed

+296
-363
lines changed

.eslintrc.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"extends": [
33
"eslint:recommended",
4-
"plugin:node/recommended",
4+
"plugin:n/recommended",
55
"prettier"
66
],
77
"plugins": [
8-
"node",
8+
"n",
99
"prettier"
1010
],
1111
"rules": {
@@ -48,11 +48,11 @@
4848
"@typescript-eslint/explicit-module-boundary-types": "off",
4949
"@typescript-eslint/ban-types": "off",
5050
"@typescript-eslint/camelcase": "off",
51-
"node/no-missing-import": "off",
52-
"node/no-empty-function": "off",
53-
"node/no-unsupported-features/es-syntax": "off",
54-
"node/no-missing-require": "off",
55-
"node/shebang": "off",
51+
"n/no-missing-import": "off",
52+
"n/no-empty-function": "off",
53+
"n/no-unsupported-features/es-syntax": "off",
54+
"n/no-missing-require": "off",
55+
"n/shebang": "off",
5656
"no-dupe-class-members": "off",
5757
"require-atomic-updates": "off"
5858
},

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [ $default-branch ]
3+
branches: [$default-branch]
44
pull_request:
55
name: ci
66
jobs:
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
node: [14, 16, 18]
12+
node: [14, 16, 18, 20, 21]
1313
steps:
1414
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
1515
- uses: actions/setup-node@v4
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
3030
- uses: actions/setup-node@v4
3131
with:
32-
node-version: 16
32+
node-version: 20
3333
- run: npm ci
3434
- run: npm run system-test
3535
system_test:
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
3939
- uses: actions/setup-node@v4
4040
with:
41-
node-version: 16
41+
node-version: 20
4242
- run: npm ci
4343
- run: npm run system-test
4444
lint:
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
4848
- uses: actions/setup-node@v4
4949
with:
50-
node-version: 16
50+
node-version: 20
5151
- run: npm ci
5252
- run: npm run lint
5353
license_check:
@@ -56,6 +56,6 @@ jobs:
5656
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
5757
- uses: actions/setup-node@v4
5858
with:
59-
node-version: 16
59+
node-version: 20
6060
- run: npm ci
6161
- run: npm run license-check

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
1010
- uses: actions/setup-node@v4
1111
with:
12-
node-version: 16
12+
node-version: 20
1313
registry-url: 'https://wombat-dressing-room.appspot.com'
1414
- run: npm ci
1515
- run: npm publish

0 commit comments

Comments
 (0)