Skip to content

Commit

Permalink
🐛 (build) [NO-ISSUE]: Patch build by lowering runners (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
fAnselmi-Ledger authored Nov 14, 2024
2 parents df2b2f1 + e164d0f commit 30261e2
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Tests
id: unit-tests
if: ${{ steps.health-check.conclusion == 'success' }}
run: pnpm test:coverage -- --max-warnings=0
run: pnpm test:coverage -- --max-warnings=0 --maxWorkers=2

- uses: sonarsource/sonarqube-scan-action@v4
if: ${{ steps.unit-tests.conclusion == 'success' && github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.fork == 'false' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Tests
id: unit-tests
if: steps.changes.outputs.status > 0 && success()
run: pnpm test:coverage -- --max-warnings=0
run: pnpm test:coverage -- --max-warnings=0 --maxWorkers=2

- name: Create PR
if: steps.changes.outputs.status > 0 && success()
Expand Down
2 changes: 1 addition & 1 deletion packages/device-management-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"postpack": "find . -name '*.tgz' -exec cp {} ../../dist/ \\; ",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "jest",
"test": "jest --maxWorkers=2",
"test:watch": "pnpm test -- --watch",
"test:coverage": "pnpm test -- --coverage",
"typecheck": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/flipper-plugin-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test": "jest --maxWorkers=2 --passWithNoTests",
"test:coverage": "pnpm test -- --coverage"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/signer/context-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"postpack": "find . -name '*.tgz' -exec cp {} ../../../dist/ \\; ",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "jest",
"test": "jest --maxWorkers=2",
"test:watch": "pnpm test -- --watch",
"test:coverage": "pnpm test -- --coverage",
"typecheck": "tsc --noEmit"
Expand Down
2 changes: 1 addition & 1 deletion packages/signer/signer-btc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test": "jest --maxWorkers=2 --passWithNoTests",
"test:coverage": "pnpm test -- --coverage"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/signer/signer-eth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
"test": "jest",
"test": "jest --maxWorkers=2",
"test:watch": "pnpm test -- --watch",
"test:coverage": "pnpm test -- --coverage"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/signer/signer-solana/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
"test": "jest",
"test": "jest --maxWorkers=2",
"test:watch": "pnpm test -- --watch",
"test:coverage": "pnpm test -- --coverage"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/signer/signer-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
"test": "jest",
"test": "jest --maxWorkers=2",
"test:watch": "pnpm test -- --watch",
"test:coverage": "pnpm test -- --coverage"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/transport-mock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test": "jest --maxWorkers=2 --passWithNoTests",
"test:coverage": "pnpm test -- --coverage"
},
"dependencies": {},
Expand Down
2 changes: 1 addition & 1 deletion packages/trusted-apps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test": "jest --maxWorkers=2 --passWithNoTests",
"test:coverage": "pnpm test -- --coverage"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test": "jest --maxWorkers=2 --passWithNoTests",
"test:coverage": "pnpm test -- --coverage"
},
"dependencies": {
Expand Down

0 comments on commit 30261e2

Please sign in to comment.