chore(audit): stream-json GHSA-528h-pc64-c93x を到達性ゼロで受容 (allowlist + §7.13) #1458
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: e2e (Playwright) | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| workflow_dispatch: {} | |
| env: | |
| # GitHub Actions の Node.js 20 deprecation 対策 (詳細は ci.yml の同 env block 参照) | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' | |
| jobs: | |
| playwright: | |
| runs-on: ubuntu-latest | |
| # chromium+webkit の 2 ブラウザ suite が 20 分に収まらず cancelled していたため 30 分へ。 | |
| timeout-minutes: 30 | |
| env: | |
| NEXT_PUBLIC_NETWORK_ENV: testnet | |
| NEXT_PUBLIC_PIMLICO_API_KEY: dummy_for_build | |
| NEXT_PUBLIC_PIMLICO_SPONSORSHIP_POLICY_ID: sp_dummy | |
| NEXT_PUBLIC_FEE_RECEIVER_ADDRESS: '0x000000000000000000000000000000000000dEaD' | |
| NEXT_PUBLIC_JPYC_TESTNET_ADDRESS: '0x0000000000000000000000000000000000000abc' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Install | |
| run: npm ci | |
| - name: Install Playwright browsers | |
| run: npx playwright install --with-deps chromium webkit | |
| - name: Build | |
| run: npm run build | |
| - name: Run e2e | |
| run: npm run e2e | |
| - name: Upload Playwright report | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 7 |