Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install & Build
run: yarn setup
- name: Test
run: yarn test:unit:coverage
run: yarn test:unit:coverage --coverageDirectory .coverage/unit/ --maxWorkers=2
- name: Codecov
run: ./node_modules/.bin/codecov --token=${{ secrets.CODECOV_TOKEN }}

Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Create .core/database directory
run: mkdir -p $HOME/.core/database
- name: Integration tests
run: yarn test:integration:coverage
run: yarn test:integration:coverage --coverageDirectory .coverage/integration/
- name: Codecov
run: ./node_modules/.bin/codecov --token=${{ secrets.CODECOV_TOKEN }}

Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Create .core/database directory
run: mkdir -p $HOME/.core/database
- name: Functional tests
run: yarn test:functional:coverage
run: yarn test:functional:coverage --coverageDirectory .coverage/functional/
- name: Codecov
run: ./node_modules/.bin/codecov --token=${{ secrets.CODECOV_TOKEN }}

Expand Down