From cc483e083c1e28cd5ff2d0f2b0a706a81439ab60 Mon Sep 17 00:00:00 2001 From: Guilherme Hermeto Date: Fri, 6 May 2022 08:41:15 -0700 Subject: [PATCH] chore: remove travis and update github ci (#1878) --- .github/workflows/ci.yml | 4 ++-- .travis.yml | 15 --------------- 2 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4030abb7e..a2ae6f518 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: install node v10 + - name: install node v16 uses: actions/setup-node@v1 with: - node-version: v10.x + node-version: v16.x - name: install dependencies run: npm install - name: check lint diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 98b7e4ea4..000000000 --- a/.travis.yml +++ /dev/null @@ -1,15 +0,0 @@ -sudo: false -language: node_js -node_js: - - '10' - - "lts/*" # Active LTS release - - "node" # Latest stable release -env: - - TEST_SKIP_IP_V6=true # Current TravisCI (trusty) doesn't support IPv6 -notifications: - webhooks: - urls: - - https://webhooks.gitter.im/e/4a4dea774d3ac86cfef1 - on_success: change # options: [always|never|change] default: always - on_failure: always # options: [always|never|change] default: always - on_start: false # default: false