aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2019-10-09 19:42:35 +0300
committerXhmikosR <[email protected]>2019-11-14 15:07:52 +0200
commit19a13ad0b0db59e274cabfc501bedf6c5dde6991 (patch)
treed4ddb94585d805541acc9791bd7a028492e9368a
parent2ed185ca3626591549ed33c2363a47b824a39d0f (diff)
downloadnode-coveralls-19a13ad0b0db59e274cabfc501bedf6c5dde6991.tar.xz
node-coveralls-19a13ad0b0db59e274cabfc501bedf6c5dde6991.zip
Switch to GitHub Actions CI.
Currently only runs on Ubuntu
-rw-r--r--.github/workflows/test.yml35
-rw-r--r--.travis.yml7
-rw-r--r--README.md6
3 files changed, 38 insertions, 10 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..7333db0
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,35 @@
+name: Tests
+on: [push, pull_request]
+env:
+ CI: true
+
+jobs:
+ run:
+ name: Node ${{ matrix.node }}
+ runs-on: ubuntu-latest
+
+ strategy:
+ fail-fast: false
+ matrix:
+ node: [6, 8, 10, 12]
+
+ steps:
+ - name: Clone repository
+ uses: actions/checkout@v1
+
+ - name: Set Node.js version
+ uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node }}
+
+ - run: node --version
+ - run: npm --version
+
+ - name: Install npm dependencies
+ run: npm install # switch to `npm ci` when Node.js 6 support is dropped
+
+ - name: Run tests
+ run: make test-coveralls
+ env:
+ COVERALLS_REPO_TOKEN: "${{ secrets.COVERALLS_REPO_TOKEN }}"
+ COVERALLS_GIT_BRANCH: "${{ github.ref }}"
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 3bd9c80..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-language: node_js
-node_js:
- - "node"
- - "8"
- - "6"
-script: make test-coveralls
-sudo: false
diff --git a/README.md b/README.md
index f4ccbd1..7241c1b 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# node-coveralls
-[![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url]
+[![Build Status][ci-image]][ci-url] [![Coverage Status][coveralls-image]][coveralls-url]
[![Known Vulnerabilities](https://snyk.io/test/github/nickmerwin/node-coveralls/badge.svg)](https://snyk.io/test/github/nickmerwin/node-coveralls)
[Coveralls.io](https://coveralls.io/) support for node.js. Get the great coverage reporting of coveralls.io and add a cool coverage button ( like the one above ) to your README.
@@ -147,8 +147,8 @@ If you're running locally, you must have a `.coveralls.yml` file, as documented
If you want to send commit data to coveralls, you can set the `COVERALLS_GIT_COMMIT` environment-variable to the commit hash you wish to reference. If you don't want to use a hash, you can set it to `HEAD` to supply coveralls with the latest commit data. This requires git to be installed and executable on the current PATH.
-[travis-image]: https://travis-ci.org/nickmerwin/node-coveralls.svg?branch=master
-[travis-url]: https://travis-ci.org/nickmerwin/node-coveralls
+[ci-image]: https://github.com/nickmerwin/node-coveralls/workflows/Tests/badge.svg
+[ci-url]: https://github.com/nickmerwin/node-coveralls/actions?workflow=Tests
[coveralls-image]: https://coveralls.io/repos/nickmerwin/node-coveralls/badge.svg?branch=master&service=github
[coveralls-url]: https://coveralls.io/github/nickmerwin/node-coveralls?branch=master