Skip to content

Commit

Permalink
chore(workflow) do not use parallel while testing
Browse files Browse the repository at this point in the history
  • Loading branch information
andypf committed Jul 25, 2024
1 parent 206e6b6 commit a270e6b
Show file tree
Hide file tree
Showing 7 changed files with 475 additions and 3,088 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-checks.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI Checks
name: CI Check

on:
pull_request:
Expand Down
3 changes: 0 additions & 3 deletions apps/example/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
"@cloudoperators/juno-messages-provider#build",
"@cloudoperators/juno-communicator#build"
]
},
"test": {
"dependsOn": ["build"]
}
}
}
3,549 changes: 468 additions & 3,081 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test --parallel",
"test": "turbo run test --concurrency=15",
"check-licenses": "npx run license-checker-rseidelsohn --summary --excludePrivatePackages --onlyAllow 'MIT;ISC;Apache-2.0;BSD-2-Clause;BSD-3-Clause;BSD-4-Clause;CC-BY-3.0;CC-BY-4.0;BlueOak-1.0.0;CC0-1.0;0BSD;Python-2.0;BSD*;Unlicense'",
"clean": "turbo run clean && rm -rf node_modules && rm -rf ./**/*/node_modules",
"typecheck": "turbo run typecheck",
Expand Down
3 changes: 2 additions & 1 deletion packages/communicator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"contributors": [
"Andreas Pfau"
],
"main": "./dist/index.mjs",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
Expand Down
1 change: 1 addition & 0 deletions packages/communicator/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ export default defineConfig((options: Options) => ({
sourcemap: true,
dts: true,
format: ["esm"],
platform: "browser",
...options,
}))
3 changes: 2 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
},
"test": {
"cache": false,
"persistent": true
"persistent": true,
"dependsOn": ["build"]
},
"dev": {
"cache": false,
Expand Down

0 comments on commit a270e6b

Please sign in to comment.