iOS Slow Pyodide Checks #126
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: iOS Slow Pyodide Checks | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 10 * * *' | |
| jobs: | |
| pyodide-roundtrip: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
| - name: Set up Node | |
| uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 | |
| with: | |
| node-version: '22.12.0' | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Download Pyodide runtime | |
| run: make pyodide | |
| - name: Install Playwright browser | |
| run: npx playwright install --with-deps chromium | |
| - name: Run slow Pyodide roundtrip | |
| run: make test-e2e-slow |