e2e-test-webkit #342
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-test-webkit | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - feature/* | |
| paths: | |
| - playwright.config.ts | |
| - .github/workflows/e2e-test-webkit.yml | |
| - e2e-tests/** | |
| schedule: | |
| # UTC 時間で毎日 2:00 (JST で 11:00) に実行、月曜日から金曜日 | |
| - cron: "0 2 * * 1-5" | |
| jobs: | |
| # WebKit のテスト | |
| e2e-test-webkit: | |
| strategy: | |
| matrix: | |
| node: | |
| # Nodejs のテストではないので一番古い LTS である 20 でのみ動作確認する | |
| - "20" | |
| env: | |
| VITE_TEST_SIGNALING_URL: ${{ secrets.TEST_SIGNALING_URL }} | |
| VITE_TEST_CHANNEL_ID_PREFIX: ${{ secrets.TEST_CHANNEL_ID_PREFIX }} | |
| VITE_TEST_API_URL: ${{ secrets.TEST_API_URL }} | |
| VITE_TEST_SECRET_KEY: ${{ secrets.TEST_SECRET_KEY }} | |
| runs-on: | |
| group: Self | |
| labels: [self-hosted, macOS, ARM64, Apple-M2-Pro] | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - run: pnpm --version | |
| - run: pnpm install | |
| - run: pnpm run build | |
| - run: pnpm playwright install webkit --with-deps | |
| - run: pnpm playwright test --project="WebKit" e2e-tests/tests/webkit.test.ts | |
| env: | |
| VITE_TEST_CHANNEL_ID_SUFFIX: _${{ github.run_id }}_${{ matrix.node }} | |
| # - uses: actions/upload-artifact@v4 | |
| # if: always() | |
| # with: | |
| # name: playwright-report | |
| # path: playwright-report/ | |
| # retention-days: 30 | |
| # slack_notify_succeeded: | |
| # needs: [e2e-test] | |
| # runs-on: ubuntu-24.04 | |
| # if: success() | |
| # steps: | |
| # - name: Slack Notification | |
| # uses: rtCamp/action-slack-notify@v2 | |
| # env: | |
| # SLACK_CHANNEL: sora-js-sdk | |
| # SLACK_COLOR: good | |
| # SLACK_TITLE: Succeeded | |
| # SLACK_ICON_EMOJI: ":star-struck:" | |
| # SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
| slack_notify_failed: | |
| needs: [e2e-test-webkit] | |
| runs-on: ubuntu-24.04 | |
| if: failure() | |
| steps: | |
| - name: Slack Notification | |
| uses: rtCamp/action-slack-notify@v2 | |
| env: | |
| SLACK_CHANNEL: sora-js-sdk | |
| SLACK_COLOR: danger | |
| SLACK_TITLE: Failed | |
| SLACK_ICON_EMOJI: ":japanese_ogre:" | |
| SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |