tron #476
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: Sushi - apps / web | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- ".github/workflows/apps-web-e2e.yml" | |
- "apps/web/**" | |
- "config/nextjs/**" | |
- "config/router/**" | |
- "config/tailwindcss/**" | |
- "config/typescript/**" | |
- "config/viem/**" | |
- "config/wagmi/**" | |
- "packages/**" | |
workflow_dispatch: | |
env: | |
CI: true | |
NODE_OPTIONS: --max-old-space-size=8192 | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
TURBO_FORCE: false | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
e2e: | |
runs-on: buildjet-4vcpu-ubuntu-2204 | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
block-number: [60306923] | |
chain-id: [137] | |
node-version: [20] | |
pnpm-version: [9.4.0] | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
submodules: true | |
# Has to be before setup node for caching to work | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: ${{ matrix.pnpm-version }} | |
- name: Setup Node.js | |
uses: buildjet/setup-node@v3 | |
with: | |
cache: 'pnpm' | |
node-version: ${{ matrix.node-version }} | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --prefer-offline | |
- name: Install Playwright Browsers | |
run: pnpm playwright install --with-deps chromium | |
working-directory: ./apps/web | |
- name: Test | |
run: pnpm exec turbo run test --filter web | |
env: | |
ANVIL_FORK_URL: ${{ secrets.ANVIL_FORK_URL }} | |
ANVIL_BLOCK_NUMBER: ${{ matrix.block-number }} | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
REDIS_URL: ${{ secrets.REDIS_URL }} | |
EDGE_CONFIG: ${{ secrets.EDGE_CONFIG }} | |
NEXT_PUBLIC_APP_ENV: 'test' | |
NEXT_PUBLIC_CHAIN_ID: ${{ matrix.chain-id }} | |
NEXT_TELEMETRY_DISABLED: 1 | |
# Tron | |
NEXT_PUBLIC_TRON_PRO_API_KEY: ${{ secrets.NEXT_PUBLIC_TRON_PRO_API_KEY }} | |
BITQUERY_API_KEY: ${{ secrets.BITQUERY_API_KEY }} | |
BITQUERY_BEARER_TOKEN: ${{ secrets.BITQUERY_BEARER_TOKEN }} | |
- name: Upload test results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playwright-report | |
path: ./apps/web/test-results/ | |
retention-days: 30 |