Skip to content

Commit 485a34c

Browse files
authored
Merge pull request #125 from zowe/awharn/enhancement/support-node-24-v3
2 parents 1b5c85e + 6eba069 commit 485a34c

File tree

4 files changed

+301
-229
lines changed

4 files changed

+301
-229
lines changed

.eslintrc.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ module.exports = {
1414
"overrides": [
1515
{
1616
"extends": [
17-
"plugin:jest/recommended"
17+
"plugin:jest/recommended",
18+
"plugin:deprecation/recommended"
1819
],
1920
"files": [
2021
"**/__tests__/**/*.ts"
@@ -34,7 +35,8 @@ module.exports = {
3435
"parser": "@typescript-eslint/parser",
3536
"parserOptions": {
3637
"ecmaVersion": 12,
37-
"sourceType": "module"
38+
"sourceType": "module",
39+
"project": ["./tsconfig.json", "./__tests__/test-tsconfig.json"]
3840
},
3941
"plugins": [
4042
"@typescript-eslint",

.github/workflows/zowe-cli-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
node-version: [18.x, 20.x]
18+
node-version: [20.x, 22.x, 24.x]
1919
os: [windows-latest, ubuntu-latest, macos-latest]
2020

2121
steps:

0 commit comments

Comments
 (0)