From eb0630b9e00b3f59f3fad0dfc45c025f5060af93 Mon Sep 17 00:00:00 2001 From: Patrick McElhaney Date: Mon, 21 Aug 2023 14:08:46 -0400 Subject: [PATCH] remove the --forceExit flag --- .github/workflows/coveralls.yaml | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/.github/workflows/coveralls.yaml b/.github/workflows/coveralls.yaml index e4f6f46c..f37a479c 100644 --- a/.github/workflows/coveralls.yaml +++ b/.github/workflows/coveralls.yaml @@ -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 }}