From e52fa51ab841e9fea2e376c3f9932c3ecdbf994b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferm=C3=ADn=20Gal=C3=A1n=20M=C3=A1rquez?= Date: Mon, 13 Jun 2022 15:58:48 +0200 Subject: [PATCH 1/2] ADD nodev18 to regression suite --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03beacdd..b3b8a1e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,7 @@ jobs: - 12.x - 14.x - 16.x + - 18.x steps: - name: Git checkout uses: actions/checkout@v2 @@ -59,10 +60,10 @@ jobs: steps: - name: Git checkout uses: actions/checkout@v2 - - name: 'Test Coverage with Node.js 12.x' + - name: 'Test Coverage with Node.js 14.x' uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 14.x - run: | npm install npm run test:coverage From bc78bc1a10d2a203ac0afe0284055c85c590ec3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferm=C3=ADn=20Gal=C3=A1n=20M=C3=A1rquez?= Date: Mon, 13 Jun 2022 16:06:00 +0200 Subject: [PATCH 2/2] Delete .travis.yml --- .travis.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 992c6d4a..00000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ -language: node_js - -node_js: - - "10" - -branches: - only: - - master - -services: - - mongodb - -install: - # It seems to be a good idea to clean before install - # see https://travis-ci.community/t/i-needed-an-explicit-cleanup-before-starting-my-tests-to-have-then-working-again-is-that-normal/5512/2 - - npm run clean - - npm install - -before_install: - - npm update -q - -dist: precise - -before_script: - - npm run lint