Merge pull request #1417 from thewtex/hello-playwright #2966
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: WASI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| env: | |
| OCI_EXE: docker | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Free Disk Space (Ubuntu) | |
| uses: jlumbroso/free-disk-space@main | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: true | |
| - uses: nick-fields/retry@v3 | |
| with: | |
| max_attempts: 5 | |
| timeout_minutes: 10 | |
| command: ./src/docker/pull.sh --no-debug | |
| - name: Build | |
| run: | | |
| pnpm run --aggregate-output build:wasi | |
| - name: Download test data | |
| run: | | |
| pnpm run --aggregate-output test:data:download | |
| - name: Test | |
| run: | | |
| pnpm run --aggregate-output test:wasi |