refactor(mobile-e2e): simplified runbook, scripted stub setup, load-tolerant flows #894
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: Check markdown table padding | |
| on: | |
| pull_request: | |
| paths: | |
| - '**/*.md' | |
| - 'script/check-md-table-padding.ts' | |
| - '.github/workflows/check-md-table-padding.yml' | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| name: Check markdown table padding | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Run check | |
| run: bun run script/check-md-table-padding.ts |