Skip to content

Commit

Permalink
ci(debug): disable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
gnikit committed Mar 1, 2024
1 parent ea2826a commit 87ebc63
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,17 @@ jobs:
- name: Test Unittests
uses: coactions/setup-xvfb@v1
with:
run: npm run test
run: |
npm run pretest
npm run test:integration
# This will not fail the job if tests fail so we have to npm test separately
- name: Coverage report
uses: coactions/setup-xvfb@v1
with:
run: npm run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
# - name: Coverage report
# uses: coactions/setup-xvfb@v1
# with:
# run: npm run coverage
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# fail_ci_if_error: true

0 comments on commit 87ebc63

Please sign in to comment.