We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 685de8d commit ac2ad19Copy full SHA for ac2ad19
1 file changed
.github/workflows/code-style.yml
@@ -261,6 +261,14 @@ jobs:
261
working-directory: application
262
run: npx turbo run build --filter=@repo/emails
263
264
+ - name: Bootstrap Port Allocation
265
+ # Pre-populate .workspace/port.txt so the parallel test assemblies in `dotnet test
266
+ # PlatformPlatform.slnx` don't race PortAllocation.Load(): the loser sees a half-created
267
+ # zero-byte file and throws "must contain a positive integer. Got: ''".
268
+ run: |
269
+ mkdir -p .workspace
270
+ echo "9000" > .workspace/port.txt
271
+
272
- name: Run SonarCloud Analysis
273
274
env:
0 commit comments