Skip to content

Commit

Permalink
chore: Remove flaky crash on CI build
Browse files Browse the repository at this point in the history
This commit aims to remove flaky crash on CI build due to node. We follow the solution proposed inside nodejs/node#51555 that disable compile cache on v8
  • Loading branch information
cballevre committed Nov 5, 2024
1 parent 417d8c2 commit d51bb35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"lint": "eslint --ext js,jsx,ts,tsx .",
"lint:md": "remark . -o",
"test": "lerna run --concurrency 1 --ignore cozy-procedures --ignore cozy-mespapiers-lib test",
"build": "lerna run --scope cozy-device-helper build && lerna run --scope cozy-minilog build && lerna run --parallel --ignore cozy-device-helper --ignore cozy-minilog --ignore cozy-mespapiers-lib build",
"build": "DISABLE_V8_COMPILE_CACHE=1 lerna run --scope cozy-device-helper build && lerna run --scope cozy-minilog build && lerna run --parallel --ignore cozy-device-helper --ignore cozy-minilog --ignore cozy-mespapiers-lib build",
"check-constraints": "node scripts/check-packages-constraints.js"
},
"devDependencies": {
Expand Down

0 comments on commit d51bb35

Please sign in to comment.