Add default image for cloudchamber create #707
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runs c3 e2e tests on pull requests with c3 changes | |
name: C3 E2E Tests (experimental) | |
on: | |
pull_request: | |
jobs: | |
e2e: | |
# Note: please keep this job in sync with the e2e-only-dependabot-bumped-framework one | |
# in .github/workflows/c3-e2e-dependabot.yml | |
timeout-minutes: 45 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.pm.name }}-${{ matrix.pm.version }} | |
cancel-in-progress: true | |
name: ${{ format('Run experimental tests for {0}@{1} on {2}', matrix.pm.name, matrix.pm.version, matrix.os) }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
pm: | |
[ | |
{ name: npm, version: "0.0.0" }, | |
{ name: pnpm, version: "9.12.0" }, | |
{ name: bun, version: "1.0.3" }, | |
{ name: yarn, version: "1.0.0" }, | |
] | |
# include a single windows test with pnpm | |
include: | |
- os: windows-latest | |
pm: { name: pnpm, version: "9.12.0" } | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: dorny/paths-filter@v3 | |
id: changes | |
with: | |
filters: | | |
everything_but_markdown: | |
- '!**/*.md' | |
- name: Install Dependencies | |
if: steps.changes.outputs.everything_but_markdown == 'true' | |
uses: ./.github/actions/install-dependencies | |
with: | |
turbo-api: ${{ secrets.TURBO_API }} | |
turbo-team: ${{ secrets.TURBO_TEAM }} | |
turbo-token: ${{ secrets.TURBO_TOKEN }} | |
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} | |
- name: E2E Tests | |
if: steps.changes.outputs.everything_but_markdown == 'true' | |
uses: ./.github/actions/run-c3-e2e | |
with: | |
packageManager: ${{ matrix.pm.name }} | |
packageManagerVersion: ${{ matrix.pm.version }} | |
quarantine: false | |
experimental: true | |
accountId: ${{ secrets.C3_TEST_CLOUDFLARE_ACCOUNT_ID }} | |
apiToken: ${{ secrets.C3_TEST_CLOUDFLARE_API_TOKEN }} |