feat(vite-plugin-cloudflare): generate sourcemap for worker environments in build if upload_source_maps: true
#21341
Workflow file for this run
This file contains hidden or 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
| name: C3 E2E | |
| on: | |
| merge_group: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| e2e: | |
| # Runs the non-frameworks C3 E2E tests on all supported operating systems and package managers. | |
| timeout-minutes: 45 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os.name }}-${{ matrix.pm.name }}-${{ matrix.pm.version }}${{ matrix.experimental && '-experimental' || '' }}-${{ matrix.filter }} | |
| cancel-in-progress: true | |
| name: ${{ format('C3 E2E ({0}, {1}{2}) - {3}', matrix.pm.name, matrix.os.description, matrix.experimental && ', experimental' || '', matrix.filter) }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| experimental: [false] | |
| filter: ["cli", "workers", "frameworks"] | |
| os: [{ name: ubuntu-latest, description: Linux }] | |
| pm: | |
| - { name: pnpm, version: "9.12.0" } | |
| - { name: npm, version: "0.0.0" } | |
| # The yarn tests keep failing on Linux with out of space errors, with no clear reason why. Disabling for now. | |
| # - { name: yarn, version: "1.0.0" } | |
| include: | |
| - os: { name: windows-latest, description: Windows } | |
| pm: { name: pnpm, version: "9.12.0" } | |
| - os: { name: ubuntu-latest, description: Linux } | |
| pm: { name: pnpm, version: "9.12.0" } | |
| experimental: true | |
| runs-on: ${{ matrix.os.name }} | |
| 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: Install Python uv | |
| if: steps.changes.outputs.everything_but_markdown == 'true' | |
| uses: ./.github/actions/install-python-uv | |
| - name: Bump package versions | |
| if: steps.changes.outputs.everything_but_markdown == 'true' | |
| run: node .github/changeset-version.js | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| # Needed because gatsby requires git | |
| - name: Configure Git | |
| shell: bash | |
| run: | | |
| git config --global user.email wrangler@cloudflare.com | |
| git config --global user.name 'Wrangler Tester' | |
| - id: run-e2e | |
| if: steps.changes.outputs.everything_but_markdown == 'true' | |
| shell: bash | |
| run: pnpm run test:e2e:c3 | |
| env: | |
| NODE_VERSION: ${{ env.NODE_VERSION }} | |
| CLOUDFLARE_API_TOKEN: ${{ secrets.TEST_CLOUDFLARE_API_TOKEN }} | |
| CLOUDFLARE_ACCOUNT_ID: ${{ secrets.TEST_CLOUDFLARE_ACCOUNT_ID }} | |
| E2E_EXPERIMENTAL: ${{ matrix.experimental }} | |
| E2E_TEST_PM: ${{ matrix.pm.name }} | |
| E2E_TEST_PM_VERSION: ${{ matrix.pm.version }} | |
| E2E_TEST_FILTER: ${{ matrix.filter }} | |
| CI_OS: ${{ runner.os }} | |
| GITHUB_TOKEN: ${{ github.token }} # Needed for begit to clone the repo in the e2e tests for solid-start | |
| - name: Upload Logs | |
| uses: actions/upload-artifact@v4 | |
| if: ${{ !cancelled() && steps.changes.outputs.everything_but_markdown == 'true' }} | |
| with: | |
| name: ${{ format('e2e-logs-{0}-{1}-{2}-{3}', matrix.pm.name, matrix.os.description, matrix.experimental && 'experimental' || 'normal', matrix.filter) }} | |
| path: packages/create-cloudflare/.e2e-logs${{matrix.experimental == 'true' && '-experimental' || ''}}/${{ matrix.pm.name }}/${{ matrix.filter }} | |
| include-hidden-files: true | |
| - name: Upload Turbo Summary | |
| uses: actions/upload-artifact@v4 | |
| if: ${{ !cancelled() && steps.changes.outputs.everything_but_markdown == 'true' }} | |
| with: | |
| name: ${{ format('turbo-runs-{0}-{1}-{2}-{3}', matrix.pm.name, matrix.os.description, matrix.experimental && 'experimental' || 'normal', matrix.filter) }} | |
| path: .turbo/runs | |
| include-hidden-files: true |