Skip to content

Commit

Permalink
ci(test): do not use coverage and run only jats tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nokome committed Apr 29, 2024
1 parent 1533eb8 commit 8ee441f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env:

jobs:
linux:
runs-on: ubuntu-latest-m
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand All @@ -25,11 +25,11 @@ jobs:
# - Fifteen (!) minute test timeout
# - Force exit to prevent hanging
- name: Run tests
run: npx jest --coverage --runInBand --testTimeout=900000 --forceExit
run: npx jest jats --runInBand --testTimeout=900000 --forceExit
env:
# Tell Node.js how much un-garbage-collected-memory it can
# allow for to prevent it running out (in Mb)
NODE_OPTIONS: --max_old_space_size=24000
NODE_OPTIONS: --max_old_space_size=14000

- name: Release package
if: github.ref == 'refs/heads/master'
Expand Down

0 comments on commit 8ee441f

Please sign in to comment.