From 9ba453dfc1b31d43ce49eb9315676429003fb305 Mon Sep 17 00:00:00 2001 From: Rowadz <38977667+MohammedAl-Rowad@users.noreply.github.com> Date: Tue, 28 Jun 2022 12:43:54 +0200 Subject: [PATCH] chore: remove .travis.yml (#344) --- .travis.yml | 20 -------------------- CONTRIBUTING.md | 2 +- 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9e70780d..00000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: node_js -branches: - only: - - master - - /^greenkeeper/.*$/ - - ~/.npm - except: - - /^v\d+\.\d+\.\d+$/ -cache: - directories: - - node_modules -notifications: - email: false -before_install: - - npm i -g npm@^6.4.1 - - printf "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> ~/.npmrc -install: - - npm i -script: - - npm run test:ci diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3c46ac43..11812d19 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,7 +34,7 @@ Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source - `npm run clean` removes any built files and `node_modules` - `npm run lint` runs our TypeScript linter on all `.ts` files in each package - `npm run test` runs unit tests for all packages -- `npm run test:ci` runs unit tests in CI mode (same as would be run by Travis) +- `npm run test:ci` runs unit tests in CI mode - `npm run test:watch` runs unit tests in "watch" mode (will refresh relevant code paths on save)