From d9992bf9d76e201a2b54b40d33bc0734f038e1ce Mon Sep 17 00:00:00 2001 From: pioardi Date: Wed, 22 Jan 2020 17:47:07 +0100 Subject: [PATCH] Test node version 13.x --- .github/workflows/main.yml | 2 +- README.MD | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b351307a..d99684f6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x] + node-version: [12.x, 13.x] steps: - uses: actions/checkout@v1 diff --git a/README.MD b/README.MD index 35080cbf..b8764a93 100644 --- a/README.MD +++ b/README.MD @@ -86,7 +86,7 @@ pool.execute({}).then(res => {

Node versions

-You can use node version 10.x with --experimental-worker flag, or you can use an higher version (i.e 12.x)
+You can use node versions 12.x , 13.x

API

diff --git a/package.json b/package.json index a53d9dcf..f8e74782 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "build": "npm install", - "test": "standard && nyc mocha --experimental-worker --exit --timeout 20000 tests/*test.js ", + "test": "standard && nyc mocha --exit --timeout 20000 tests/*test.js ", "debug-test": "mocha --inspect-brk --experimental-worker --exit tests/*test.js ", "demontest": "nodemon --exec \"npm test\"", "coverage": "nyc report --reporter=text-lcov tests/*test.js | coveralls", -- 2.34.1