diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 4961cf0..cd0049a 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: diff --git a/.vscode/launch.json b/.vscode/launch.json index f155077..f5c25a6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,7 +10,6 @@ "request": "launch", "console": "integratedTerminal", "program": "${workspaceRoot}\\devtools\\dev-server.mjs", - "protocol": "inspector", "cwd": "${workspaceRoot}", "outFiles": [ "${workspaceRoot}/dist/*.js" ], "preLaunchTask": "webpack" @@ -50,8 +49,6 @@ "name": "Run Tests With Debugger", "type": "node", "request": "launch", - "port": 5858, - "address": "localhost", "stopOnEntry": false, "runtimeExecutable": null, "sourceMaps": true, @@ -60,9 +57,8 @@ ], "runtimeArgs": [ "--inspect-brk=5858", - "./node_modules/jest-cli/bin/jest.js", - "-i", - "--runInBand" + "./node_modules/jest/bin/jest", + "-i" ], "cwd": "${workspaceRoot}" }, {