diff --git a/.github/workflows/BuildJobs.yml b/.github/workflows/BuildJobs.yml index 48109238a7..ede2cec658 100644 --- a/.github/workflows/BuildJobs.yml +++ b/.github/workflows/BuildJobs.yml @@ -125,16 +125,10 @@ jobs: key: turbo-cache-${{ runner.os }}-${{ matrix.target }}-${{ env.main_sha }} restore-keys: | turbo-cache-${{ runner.os }}-${{ matrix.target }} - - if: runner.os == 'Windows' - name: Set concurrency on Windows - run: echo "task_concurrency=3" >> $env:GITHUB_ENV - - if: runner.os == 'Linux' - name: Set concurrency on Linux - run: echo "task_concurrency=5" >> $GITHUB_ENV - name: Install dependencies run: pnpm install - name: Run ${{ matrix.target }} task - run: pnpm run ${{ matrix.target }} --concurrency=${{ env.task_concurrency }} ${{ env.since_flag }} + run: pnpm run ${{ matrix.target }} --concurrency=1 ${{ env.since_flag }} env: # Limit memory to avoid out of memory issues NODE_OPTIONS: "--max-old-space-size=5120 --max_old_space_size=5120" @@ -211,10 +205,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: >- - node ./automation/run-e2e/bin/run-e2e-in-chunks.mjs - --chunks ${{ matrix.chunks }} - --index ${{ matrix.index }} - --event-name ${{ github.event_name }} + node ./automation/run-e2e/bin/run-e2e-in-chunks.mjs --chunks ${{ matrix.chunks }} --index ${{ matrix.index }} --event-name ${{ github.event_name }} - name: Check file existence id: check_files uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 diff --git a/package.json b/package.json index b5cc79a789..a24a856d82 100644 --- a/package.json +++ b/package.json @@ -70,5 +70,6 @@ "onlyBuiltDependencies": [ "canvas" ] - } + }, + "prettier": "@mendix/prettier-config-web-widgets" } diff --git a/turbo.json b/turbo.json index 5b52561437..93f1a58af9 100644 --- a/turbo.json +++ b/turbo.json @@ -12,7 +12,7 @@ "outputs": ["dist/**", "!dist/tmp/**"] }, "release": { - "dependsOn": ["^build", "verify"], + "dependsOn": ["build", "^build", "verify"], "outputs": ["dist/**", "!dist/tmp/**"] }, "build:module": {