iOSではworker実行環境読み込み時にalertを出す #15
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: Runtime Tests CI | |
| on: | |
| pull_request: | |
| paths: | |
| - 'packages/runtime/**' | |
| - '.github/workflows/runtime-tests.yml' | |
| jobs: | |
| test-runtime: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - run: npm ci | |
| - run: npm test -w @my-code/runtime |