Skip to content

Commit 1fdf144

Browse files
Move parallel flag into workflow
1 parent 899075b commit 1fdf144

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
main-branch-name: 'main'
4545
- name: Run Tests
46-
run: pnpm run test:pr
46+
run: pnpm run test:pr --parallel=3
4747
- name: Stop Agents
4848
if: ${{ always() }}
4949
run: npx nx-cloud stop-all-agents

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm",
1313
"install:csb": "corepack enable && pnpm install --frozen-lockfile",
1414
"test": "pnpm run test:ci",
15-
"test:pr": "nx affected --targets=test:eslint,test:lib,test:types,test:build,build --parallel=3",
15+
"test:pr": "nx affected --targets=test:eslint,test:lib,test:types,test:build,build",
1616
"test:ci": "nx run-many --targets=test:format,test:sherif,test:eslint,test:lib,test:types,test:build,build",
1717
"test:eslint": "nx affected --target=test:eslint --exclude=examples/**",
1818
"test:format": "pnpm run prettier --check",

0 commit comments

Comments
 (0)