Skip to content
  •  
  •  
  •  
5 changes: 3 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ jobs:
- name: Prepare ONNX
run: npm run create-onnx -t
- name: Test lib
run: npm run test:lib --bail
run: npm run test:lib -- --bail 1
- name: Coveralls
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: coverage/clover.xml
continue-on-error: true
test-js:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Prepare ONNX
run: npm run create-onnx -t
- name: Test
run: npm run test:lib --bail
run: npm run test:lib -- --bail 1
publish:
runs-on: ubuntu-latest
needs: test
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ jobs:
- name: Prepare ONNX
run: npm run create-onnx -t
- name: Test lib
run: npm run test:lib --bail
run: npm run test:lib -- --bail 1
- name: Coveralls
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: coverage/clover.xml
continue-on-error: true
test-js:
runs-on: ubuntu-latest
Expand Down
Loading