Skip to content

Commit

Permalink
remove the --forceExit flag
Browse files Browse the repository at this point in the history
  • Loading branch information
pmcelhaney committed Aug 21, 2023
1 parent 4d2b0f8 commit eb0630b
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions .github/workflows/coveralls.yaml
Expand Up @@ -3,26 +3,24 @@ on: ["push"]
name: Coveralls

jobs:

build:
name: Coveralls
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/checkout@v3

- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: yarn
- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: yarn

- name: install, run tests
run: |
yarn
yarn test --forceExit
- name: install, run tests
run: |
yarn
yarn test
- name: Coveralls
uses: coverallsapp/github-action@v2.2.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Coveralls
uses: coverallsapp/github-action@v2.2.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit eb0630b

Please sign in to comment.