Skip to content

Commit

Permalink
CI: drop node 16 as it doesn't support the Headers constructor in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maksis committed Sep 18, 2024
1 parent c554c33 commit 6a48749
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 2 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"request": "launch",
"console": "integratedTerminal",
"program": "${workspaceRoot}\\devtools\\dev-server.mjs",
"protocol": "inspector",
"cwd": "${workspaceRoot}",
"outFiles": [ "${workspaceRoot}/dist/*.js" ],
"preLaunchTask": "webpack"
Expand Down Expand Up @@ -50,8 +49,6 @@
"name": "Run Tests With Debugger",
"type": "node",
"request": "launch",
"port": 5858,
"address": "localhost",
"stopOnEntry": false,
"runtimeExecutable": null,
"sourceMaps": true,
Expand All @@ -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}"
}, {
Expand Down

0 comments on commit 6a48749

Please sign in to comment.