fix(log-box): fix error overlay footer overlapping content (#45526) #5251
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: Native Component List app | |
| on: | |
| workflow_dispatch: {} | |
| pull_request: | |
| paths: | |
| - .github/workflows/native-component-list.yml | |
| - apps/native-component-list/** | |
| - packages/** | |
| - pnpm-lock.yaml | |
| - '!packages/@expo/cli/**' | |
| push: | |
| branches: [main] | |
| paths: | |
| - .github/workflows/native-component-list.yml | |
| - apps/native-component-list/** | |
| - packages/** | |
| - pnpm-lock.yaml | |
| - '!packages/@expo/cli/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: 👀 Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: 🔨 Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: ⬢ Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'pnpm' | |
| - name: 📦 Install dependencies | |
| run: pnpm install --ignore-scripts --frozen-lockfile | |
| - name: 🛠 Compile NCL sources | |
| run: pnpm tsc | |
| working-directory: apps/native-component-list | |
| - name: 🚨 Lint NCL app | |
| run: pnpm lint --max-warnings 0 | |
| working-directory: apps/native-component-list | |
| - name: 🔔 Notify on Slack | |
| uses: ./.github/actions/slack-notify | |
| if: failure() && (github.event.ref == 'refs/heads/main') | |
| with: | |
| webhook: ${{ secrets.slack_webhook_api }} | |
| author_name: Build Native Component List |