Skip to content

Commit

Permalink
Remove Matrix Info From Test Names
Browse files Browse the repository at this point in the history
These are nice sometimes, but they don't play well with github's UI and
branch protection setup. Let's use plain names and see how that feels.
  • Loading branch information
jrjohnson committed Jul 23, 2024
1 parent eafff4d commit f98c654
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: pnpm run lint

test:
name: ${{matrix.workspace}} Test (${{ matrix.node-version }})
name: Test
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [lint]
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
retention-days: 7

build:
name: ${{matrix.workspace}} Build (${{ matrix.node-version }})
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
Expand All @@ -97,7 +97,7 @@ jobs:
run: pnpm --filter ${{matrix.workspace}} run build

test-with-embroider:
name: ${{matrix.workspace}} Test With Embroider
name: Test With Embroider
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
retention-days: 7

build-with-embroider:
name: ${{matrix.workspace}} Build With Embroider
name: Build With Embroider
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
Expand Down

0 comments on commit f98c654

Please sign in to comment.