Skip to content

Commit 6a31bad

Browse files
authored
Merge pull request #36 from KyoriPowered/feat/node20
feat!: Require Node 20
2 parents ebebc68 + 749311f commit 6a31bad

File tree

8 files changed

+549
-501
lines changed

8 files changed

+549
-501
lines changed

.eslintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ module.exports = {
99
],
1010
"parser": "@typescript-eslint/parser",
1111
"parserOptions": {
12-
"ecmaVersion": 2021,
12+
"ecmaVersion": 2022,
1313
"sourceType": "module"
1414
},
1515
"plugins": [
1616
"@typescript-eslint"
1717
],
1818
"rules": {
19+
"@typescript-eslint/no-explicit-any": "off"
1920
}
2021
};

.github/workflows/check-dist.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
workflow_dispatch:
1919

2020
env:
21-
NODE_VERSION: "16.x"
21+
NODE_VERSION: "20.x"
2222

2323
jobs:
2424
check-dist:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test
33
on: push
44

55
env:
6-
NODE_VERSION: "16.x"
6+
NODE_VERSION: "20.x"
77

88
jobs:
99
test:

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ outputs:
2525
release:
2626
description: The latest release, or blank if none is published
2727
runs:
28-
using: node16
28+
using: node20
2929
main: dist/index.js
3030
branding:
3131
icon: external-link

0 commit comments

Comments
 (0)