Skip to content

Commit

Permalink
ci: fix typos in C3 E2E actions
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Jun 12, 2024
1 parent 62db9b0 commit 18da0e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/c3-e2e-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# Note: please keep this job in sync with the e2e one
#  in .github/workflows/c3-e2e.yml
needs: [get-dependabot-bumped-framework]
name: ${{ format('Dependabot E2E ({0}@{1})', matrix.pm.name, matrix.pm.version) }}
name: ${{ format('Run tests for {0}@{1} on $2', matrix.pm.name, matrix.pm.version, matrix.os) }}
strategy:
fail-fast: false
matrix:
Expand All @@ -49,7 +49,7 @@ jobs:
{ name: npm, version: "0.0.0" },
{ name: pnpm, version: "9.1.3" },
{ name: bun, version: "1.0.3" },
{ name: yarn, verison: "1.0.0" },
{ name: yarn, version: "1.0.0" },
]
# include a single windows test with pnpm
include:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/c3-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.pm.name }}-${{ matrix.pm.version }}
cancel-in-progress: true
name: ${{ format('E2E ({0}@{1} on {2})', matrix.pm.name, matrix.pm.version, matrix.os) }}
name: ${{ format('Run tests for {0}@{1} on {2}', matrix.pm.name, matrix.pm.version, matrix.os) }}
if: github.repository_owner == 'cloudflare' && github.event.pull_request.user.login != 'dependabot[bot]'
strategy:
fail-fast: false
Expand All @@ -30,7 +30,7 @@ jobs:
{ name: npm, version: "0.0.0" },
{ name: pnpm, version: "9.1.3" },
{ name: bun, version: "1.0.3" },
{ name: yarn, verison: "1.0.0" },
{ name: yarn, version: "1.0.0" },
]
# include a single windows test with pnpm
include:
Expand Down

0 comments on commit 18da0e5

Please sign in to comment.