Skip to content

[router]: fix _layout file with platform extensions registering as a route #8629

[router]: fix _layout file with platform extensions registering as a route

[router]: fix _layout file with platform extensions registering as a route #8629

Workflow file for this run

name: CLI
on:
push:
branches: [main, 'sdk-*']
paths:
- .github/workflows/cli.yml
- packages/@expo/cli/**
- packages/@expo/metro-runtime/**
- packages/@expo/metro-config/src/**
- packages/@expo/config/src/**
- packages/@expo/config-plugins/src/**
- packages/@expo/env/src/**
- packages/@expo/json-file/src/**
- packages/@expo/package-manager/src/**
- packages/@expo/prebuild-config/src/**
- packages/@expo/server/src/**
- packages/create-expo/**
- packages/expo-router/**
- yarn.lock
pull_request:
paths:
- .github/workflows/cli.yml
- packages/@expo/cli/**
- packages/@expo/metro-runtime/**
- packages/@expo/metro-config/src/**
- packages/@expo/config/src/**
- packages/@expo/config-plugins/src/**
- packages/@expo/env/src/**
- packages/@expo/json-file/src/**
- packages/@expo/package-manager/src/**
- packages/@expo/prebuild-config/src/**
- packages/@expo/server/src/**
- packages/create-expo/**
- packages/expo-router/**
- yarn.lock
schedule:
- cron: 0 14 * * *
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
shard: [1, 2, 3]
steps:
- name: 👀 Checkout
uses: actions/checkout@v4
with:
fetch-depth: 100
- uses: actions/setup-node@v3
with:
node-version: 18
- name: ⬇️ Fetch commits from base branch
run: git fetch origin ${{ github.event.before || github.base_ref || 'main' }}:${{ github.event.before || github.base_ref || 'main' }} --depth 100
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- name: 🏗️ Setup Bun
uses: oven-sh/setup-bun@v1
with:
# Version `1.x` fails due to https://github.com/oven-sh/setup-bun/issues/37
# TODO(cedric): swap `latest` back once the issue is resolved
bun-version: latest
- name: ♻️ Restore caches
uses: ./.github/actions/expo-caches
id: expo-caches
with:
yarn-workspace: 'true'
- name: 🧶 Install node modules in root dir
if: steps.expo-caches.outputs.yarn-workspace-hit != 'true'
run: yarn install --frozen-lockfile
- name: 🔎 Type Check CLI
run: yarn typecheck
working-directory: packages/@expo/cli
- name: E2E Test CLI
run: yarn test:e2e --shard ${{ matrix.shard }}/${{ strategy.job-total }}
working-directory: packages/@expo/cli
# - name: 🔔 Notify on Slack
# uses: 8398a7/action-slack@v3
# if: failure() && (github.event.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/heads/sdk-'))
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# SLACK_WEBHOOK_URL: ${{ secrets.slack_webhook_api }}
# with:
# channel: '#expo-cli'
# status: ${{ job.status }}
# fields: job,message,ref,eventName,author,took
# author_name: Check packages
web:
runs-on: ubuntu-22.04
steps:
- name: 👀 Checkout
uses: actions/checkout@v4
with:
fetch-depth: 100
- uses: actions/setup-node@v3
with:
node-version: 18
- name: ⬇️ Fetch commits from base branch
run: git fetch origin ${{ github.event.before || github.base_ref || 'main' }}:${{ github.event.before || github.base_ref || 'main' }} --depth 100
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
- name: 🏗️ Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: ♻️ Restore caches
uses: ./.github/actions/expo-caches
id: expo-caches
with:
yarn-workspace: 'true'
- name: 🧶 Install node modules in root dir
if: steps.expo-caches.outputs.yarn-workspace-hit != 'true'
run: yarn install --frozen-lockfile
- name: Install Playwright Browsers
run: bun playwright install --with-deps
working-directory: packages/@expo/cli
- name: E2E (playwright) Test CLI
run: yarn test:playwright
working-directory: packages/@expo/cli
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: packages/@expo/cli/playwright-report/
retention-days: 30