Skip to content

Commit

Permalink
build: fix ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
halfwhole committed Dec 23, 2024
1 parent adc81ea commit a674419
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
api_key: ${{ secrets.DD_API_KEY }}
- run: npm run test
env:
NODE_OPTIONS: -r ${{ env.DD_TRACE_PACKAGE }}
NODE_OPTIONS: "--max-old-space-size=8192 -r ${{ env.DD_TRACE_PACKAGE }}"
- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"server-dev": "ts-node-dev --poll --respawn --transpile-only --inspect=0.0.0.0 -r dotenv/config -- src/server/index.ts",
"docker-dev": "concurrently \"npm run server-dev\" \"npm run client-dev\"",
"dev": "docker compose -f docker-compose.yml up --build",
"test": "jest --collectCoverage",
"test": "jest",
"test:ci": "jest --coverage && coveralls < coverage/lcov.info",
"test:e2e": "testcafe chrome ./test/end-to-end --app \"npm run dev\" --app-init-delay 270000",
"test:e2e-headless": "testcafe chrome:headless ./test/end-to-end --app \"npm run dev\" --app-init-delay 270000",
Expand Down

0 comments on commit a674419

Please sign in to comment.