From cc9155401f549c93ea67ff4e409cc23f5068701e Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Thu, 23 Sep 2021 12:36:33 -0700 Subject: [PATCH] Remove references to TravisCI --- .github/workflows/push.yml | 2 +- README.md | 4 +--- package.json | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 5d8a779d6..1b941bf99 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -20,7 +20,7 @@ jobs: - name: Run unit tests run: | npm install - npm run travis + npm run ci npm-publish: needs: unit-tests if: github.ref == 'refs/heads/master' && github.event_name == 'push' diff --git a/README.md b/README.md index a0af78819..7f0cee273 100644 --- a/README.md +++ b/README.md @@ -261,6 +261,4 @@ $ curl localhost:9200/pelias/_count?pretty ### Continuous Integration -Travis tests every release against all supported Node.js versions. - -[![Build Status](https://travis-ci.org/pelias/api.png?branch=master)](https://travis-ci.org/pelias/api) +CI tests every release against all supported Node.js versions. diff --git a/package.json b/package.json index c7f94b55d..ee246500d 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "lint": "jshint .", "start": "./bin/start", "test": "npm run unit", - "travis": "npm test", + "ci": "npm test", "unit": "./bin/units", "validate": "npm ls", "config": "node -e \"console.log(JSON.stringify(require( 'pelias-config' ).generate(require('./schema')), null, 2))\"",