From dcb5d16d5300949d6b46d3dfaf25c7031c297d34 Mon Sep 17 00:00:00 2001 From: Vitaly Puzrin Date: Thu, 19 Nov 2020 20:04:51 +0300 Subject: [PATCH] CI: Travis => Github Actions --- .github/workflows/ci.yml | 37 +++++++++++++++++++++++++++++++++++++ .travis.yml | 3 --- package.json | 2 +- 3 files changed, 38 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..7142a2a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,37 @@ +name: CI + +on: + push: + pull_request: + schedule: + - cron: '0 0 * * 3' + +jobs: + test: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [ '12', '14' ] + + steps: + - uses: actions/checkout@v2 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + + - run: npm install + + - name: Test + run: npm test + + - name: Create coverage report + run: npm run report-coveralls + + - name: Upload coverage report to coveralls.io + uses: coverallsapp/github-action@v1.1.2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 95d0c5f..0000000 --- a/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: node_js -node_js: node -after_success: npm run report-coveralls diff --git a/package.json b/package.json index 2b13dc7..6632ab2 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "lint": "eslint .", "test": "npm run lint && nyc mocha && node support/specsplit.js", "coverage": "npm run test && nyc report --reporter html", - "report-coveralls": "nyc report --reporter=text-lcov | coveralls", + "report-coveralls": "nyc --reporter=lcov mocha", "doc": "node support/build_doc.js", "gh-doc": "npm run doc && gh-pages -d apidoc -f", "demo": "npm run lint && node support/build_demo.js",