From c42aa0707b3d45fdccfc3f89fa58627676611852 Mon Sep 17 00:00:00 2001 From: Marcelo Shima Date: Tue, 27 Aug 2024 14:51:21 -0300 Subject: [PATCH] add node 22 to ci (#239) --- .github/workflows/ci.yml | 2 +- .mocharc.cjs | 5 ----- .travis.yml | 5 ----- .vscode/launch.json | 37 ------------------------------------- 4 files changed, 1 insertion(+), 48 deletions(-) delete mode 100644 .mocharc.cjs delete mode 100644 .travis.yml delete mode 100644 .vscode/launch.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1999fae..fead0ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - node-version: [18.x, 20.x] + node-version: [18.x, 20.x, 22.x] steps: - uses: actions/checkout@v3 diff --git a/.mocharc.cjs b/.mocharc.cjs deleted file mode 100644 index b64ca43..0000000 --- a/.mocharc.cjs +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = { - extension: ['spec.ts'], - parallel: true, - require: ['src/mocha-cleanup.hooks.js'], -}; diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 481eef7..0000000 --- a/.travis.yml +++ /dev/null @@ -1,5 +0,0 @@ -language: node_js -node_js: - - 12 - - 14 -after_success: npm run coverage diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index ee90525..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - { - "version": "0.2.0", - "configurations": [ - { - "type": "node", - "request": "launch", - "name": "Mocha All", - "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", - "args": [ - "--timeout", - "999999", - "--colors", - "${workspaceFolder}/test" - ], - "console": "integratedTerminal", - "internalConsoleOptions": "neverOpen" - }, - { - "type": "node", - "request": "launch", - "name": "Mocha Current File", - "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", - "args": [ - "--timeout", - "999999", - "--colors", - "${file}" - ], - "console": "integratedTerminal", - "internalConsoleOptions": "neverOpen" - } - ] - } \ No newline at end of file