From 3ceb771a23495ee2e9f7ddbf72cee7628df5a710 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Sun, 12 Apr 2026 16:11:50 -0400 Subject: [PATCH] Turn off fail-fast: true --- .github/workflows/ci.yml | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 425deec8..5bc0cf2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: with: fetch-depth: 1 - uses: wyvox/action-setup-pnpm@v3 - - run: pnpm build + - run: pnpm build - name: Lint run: pnpm lint @@ -37,7 +37,7 @@ jobs: with: fetch-depth: 1 - uses: wyvox/action-setup-pnpm@v3 - - run: pnpm build + - run: pnpm build - name: Test run: pnpm test:ember --launch ${{ matrix.browser }} working-directory: test-app @@ -59,14 +59,14 @@ jobs: fetch-depth: 1 - uses: wyvox/action-setup-pnpm@v3 with: - pnpm-args: '--no-lockfile' - - run: pnpm build + pnpm-args: "--no-lockfile" + - run: pnpm build - name: Test run: pnpm test:ember --launch ${{ matrix.browser }} working-directory: test-app typecheck: - name: '${{ matrix.typescript-scenario }}' + name: "${{ matrix.typescript-scenario }}" runs-on: ubuntu-latest timeout-minutes: 2 continue-on-error: true @@ -85,28 +85,27 @@ jobs: - uses: wyvox/action-setup-pnpm@v3 - run: pnpm build - run: pnpm i -f # just in case - - name: 'test-types : ${{ matrix.typescript-scenario }}' + - name: "test-types : ${{ matrix.typescript-scenario }}" working-directory: ./test-types - run: 'pnpm add --save-dev ${{ matrix.typescript-scenario}}' + run: "pnpm add --save-dev ${{ matrix.typescript-scenario}}" - - name: 'docs : ${{ matrix.typescript-scenario }}' + - name: "docs : ${{ matrix.typescript-scenario }}" working-directory: ./docs - run: 'pnpm add --save-dev ${{ matrix.typescript-scenario}}' + run: "pnpm add --save-dev ${{ matrix.typescript-scenario}}" - - name: 'test-types' + - name: "test-types" working-directory: ./test-types run: | pnpm tsc -v pnpm tsc --noEmit - - name: 'Glint in the docs app' + - name: "Glint in the docs app" working-directory: ./docs run: | pnpm tsc -v pnpm glint --version pnpm glint - try-scenarios: name: Tests - ${{ matrix.ember-try-scenario }} runs-on: ubuntu-latest @@ -115,17 +114,16 @@ jobs: needs: test strategy: - fail-fast: true + fail-fast: false matrix: - ember-try-scenario: - [ + ember-try-scenario: [ minimum-supported-4-2, ember-lts-4.4, ember-lts-4.12, ember-lts-5.12, ember-release, ember-beta - ember-canary + ember-canary, ] allow-failure: [false] include: @@ -137,7 +135,7 @@ jobs: with: fetch-depth: 1 - uses: wyvox/action-setup-pnpm@v3 - - run: pnpm build + - run: pnpm build - name: Test env: EMBER_TRY_SCENARIO: ${{ matrix.ember-try-scenario }} @@ -154,7 +152,7 @@ jobs: with: fetch-depth: 1 - uses: wyvox/action-setup-pnpm@v3 - - run: pnpm build + - run: pnpm build - name: Test run: pnpm test:ember