Split tests

This commit is contained in:
Adria Navarro 2023-07-27 16:23:56 +02:00
parent e71ec971a0
commit c2a5a37c48
1 changed files with 6 additions and 1 deletions

View File

@ -110,7 +110,12 @@ jobs:
node-version: 18.x
cache: "yarn"
- run: yarn
- run: yarn test --concurrency=1 --scope=@budibase/worker --scope=@budibase/server
- name: Test worker
run: yarn test --scope=@budibase/worker
- name: Test server
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: yarn test --scope=@budibase/server
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN || github.token }} # not required for public repos