Skip to content

Commit

Permalink
test C3 e2e on CI with Windows + pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Nov 15, 2023
1 parent c7d528d commit baa1931
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/actions/run-c3-e2e/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ inputs:
runs:
using: "composite"
steps:
- name: Install Bun ${{ env.bun-version }}
- if: ${{ matrix.pm == 'bun' }}
name: Install Bun ${{ env.bun-version }}
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ env.bun-version }}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/c3-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,16 @@ jobs:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.pm }}
cancel-in-progress: true
name: ${{ format('E2E ({0})', matrix.pm) }}
name: ${{ format('E2E ({0} on {1})', matrix.pm, matrix.os) }}
if: github.repository_owner == 'cloudflare' && github.event.pull_request.user.login != 'dependabot[bot]'
strategy:
matrix:
os: [ubuntu-latest]
pm: [npm, pnpm, bun, yarn]
# include a single windows test with pnpm
include:
- os: windows-latest
pm: pnpm
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
Expand Down

0 comments on commit baa1931

Please sign in to comment.