diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90d04b89..d2293384 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,34 +65,6 @@ jobs: - name: Run tests run: npm run ci - - name: Coveralls Parallel - id: coveralls-parallel - uses: coverallsapp/github-action@v2.2.0 - continue-on-error: true - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - parallel: true - flag-name: run-${{ matrix.node-version }}-${{ matrix.os }} - - - name: Should Trigger coverallsapp/github-action@master - id: coveralls-trigger - # https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#steps-context - # when continue-on-error failed, outcome is failure and conclusion is success - if: steps.coveralls-parallel.conclusion == 'success' && steps.coveralls-parallel.outcome != 'success' - run: | - echo "::set-output name=COVERALLS_TRIGGER::failure" - - coverage: - needs: test - runs-on: ubuntu-latest - if: needs.test.outputs.COVERALLS != 'failure' - steps: - - name: Coveralls Finished - uses: coverallsapp/github-action@v2.2.0 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - parallel-finished: true - automerge: name: Automerge Dependabot PRs if: > diff --git a/.taprc b/.taprc deleted file mode 100644 index 112c65be..00000000 --- a/.taprc +++ /dev/null @@ -1,5 +0,0 @@ -ts: false -jsx: false -flow: false -files: - - 'test/**/*.test.js' diff --git a/.taprc.yaml b/.taprc.yaml new file mode 100644 index 00000000..8e8a0bfd --- /dev/null +++ b/.taprc.yaml @@ -0,0 +1,5 @@ +coverage: true +reporter: terse + +files: + - 'test/**/*.test.js' diff --git a/package.json b/package.json index 3d50d5b7..609b32ee 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "scripts": { "ci": "standard && tap --coverage-report=lcovonly && npm run test-types", "lint": "standard | snazzy", - "test": "tap --100 --color", + "test": "tap", "test-types": "tsc && tsd" }, "repository": {