fix not-deterministic log message #12032
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
name: E2E tests | |
on: | |
push: | |
branches: | |
- changeset-release/main | |
pull_request: | |
types: [synchronize, opened, reopened, labeled, unlabeled] | |
repository_dispatch: | |
jobs: | |
e2e-test: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.node }} | |
cancel-in-progress: true | |
timeout-minutes: 40 | |
if: (github.event_name != 'pull_request' || (github.event_name == 'pull_request' && contains(github.event.*.labels.*.name, 'e2e' ) && github.event.pull_request.head.repo.owner.login == 'cloudflare')) | |
name: "E2E Test" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-13, windows-2022, ubuntu-22.04] | |
node: ["18"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Dependencies | |
uses: ./.github/actions/install-dependencies | |
with: | |
node-version: ${{ matrix.node }} | |
turbo-api: ${{ secrets.TURBO_API }} | |
turbo-team: ${{ secrets.TURBO_TEAM }} | |
turbo-token: ${{ secrets.TURBO_TOKEN }} | |
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} | |
- name: Run builds | |
run: pnpm run build | |
env: | |
NODE_ENV: "production" | |
CI_OS: ${{ runner.os }} | |
- name: Deploy a local version of Wrangler | |
run: | | |
pnpm --filter wrangler deploy ${{ github.workspace}}/temp/wrangler | |
rm ${{ github.workspace}}/temp/wrangler/templates/tsconfig.json | |
env: | |
NODE_ENV: "production" | |
- name: Run tests | |
run: pnpm run test:e2e:wrangler | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.TEST_CLOUDFLARE_API_TOKEN }} | |
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.TEST_CLOUDFLARE_ACCOUNT_ID }} | |
WRANGLER: node --no-warnings ${{ github.workspace}}/temp/wrangler/bin/wrangler.js | |
WRANGLER_IMPORT: ${{ github.workspace}}/temp/wrangler/wrangler-dist/cli.js | |
NODE_OPTIONS: "--max_old_space_size=8192" | |
WRANGLER_LOG_PATH: ${{ runner.temp }}/wrangler-debug-logs/ | |
TEST_REPORT_PATH: ${{ runner.temp }}/test-report/index.html | |
CI_OS: ${{ matrix.os }} | |
- name: Upload debug logs | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: e2e-test-debug-logs-${{ matrix.os }}-${{ matrix.node }} | |
path: ${{ runner.temp }}/wrangler-debug-logs/ | |
- name: Upload test report | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: e2e-test-report-${{ matrix.os }}-${{ matrix.node }} | |
path: ${{ runner.temp }}/test-report/ | |
- name: Upload turbo logs | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: turbo-runs-${{ matrix.os }}-${{ matrix.node }} | |
path: .turbo/runs |