From 8a0e43c579e8a97ca8aed502075be2e33c220f95 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Tue, 30 Mar 2021 11:14:01 -0700 Subject: [PATCH] [Tests] remove .travis.yml --- .travis.yml | 59 ----------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 94b84fabe..000000000 --- a/.travis.yml +++ /dev/null @@ -1,59 +0,0 @@ -language: node_js -node_js: - - "14" - - "12" - - "10" - - "8" - - "6" - - "4" -cache: - yarn: true - directories: - - node_modules -before_install: - - nvm install-latest-npm - - if [ -n "${ESLINT-}" ]; then npm uninstall --no-save eslint-config-airbnb-base && npm install --no-save "eslint@${ESLINT}"; fi -script: - - if [ "${FLOW-}" = true ]; then npm run flow; fi - - if [ "${LINT-}" = true ]; then npm run lint; fi - - if [ "${TEST-}" = true ]; then npm run test:ci; fi -after_success: - - if [ "${TEST-}" = true ]; then npm run coveralls; fi -sudo: false -branches: - only: - - master -env: - global: - - TEST=true - matrix: - - ESLINT=7 - - ESLINT=6 - - ESLINT=5 - - ESLINT=4 - - ESLINT=3 -matrix: - fast_finish: true - include: - - node_js: "node" - env: FLOW=true TEST=false - - node_js: "node" - env: LINT=true TEST=false - exclude: - - node_js: "4" - env: ESLINT=5 - - node_js: "4" - env: ESLINT=6 - - node_js: "4" - env: ESLINT=7 - - node_js: "6" - env: ESLINT=6 - - node_js: "6" - env: ESLINT=7 - - node_js: "8" - env: ESLINT=7 - allow_failures: - - node_js: "4" - env: ESLINT=4 - - node_js: "4" - env: ESLINT=3