mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
d7c3a7ae33
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
111 lines
4.2 KiB
YAML
111 lines
4.2 KiB
YAML
name: Puppeteer Canary CI
|
|
|
|
# Declare default permissions as read only.
|
|
permissions: read-all
|
|
|
|
on:
|
|
schedule:
|
|
# Run everyday at: https://crontab.guru/#0_8_*_*_*.
|
|
- cron: '0 8 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
canary-chrome-tests:
|
|
name: ${{ matrix.suite }} tests on ${{ matrix.os }} (${{ matrix.shard }}) ${{ matrix.configs }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
suite:
|
|
- chrome-headless
|
|
- chrome-headful
|
|
- chrome-headless-shell
|
|
- chrome-bidi
|
|
os:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
- macos-13
|
|
shard:
|
|
- 1-2
|
|
- 2-2
|
|
configs:
|
|
- experimental
|
|
- stable
|
|
exclude:
|
|
- os: windows-latest
|
|
suite: chrome-bidi
|
|
- os: macos-13
|
|
suite: chrome-headful
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
|
|
with:
|
|
cache: npm
|
|
node-version-file: '.nvmrc'
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
env:
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
|
# Set up GitHub Actions caching for Wireit.
|
|
- uses: google/wireit@4aad131006ea85c1e42af927534ebb13426dd730 # setup-github-actions-caching/v1.0.2
|
|
- name: Build packages
|
|
run: npm run build --workspace @puppeteer-test/test
|
|
- name: Install Chrome Canary
|
|
id: browser
|
|
run: node tools/download_chrome_canary.mjs $HOME/.cache/puppeteer/chrome-canary
|
|
- name: Configure permissions
|
|
if: ${{ matrix.os == 'windows-latest' }}
|
|
run: icacls $HOME/.cache/puppeteer/chrome-canary /grant "ALL APPLICATION PACKAGES:(OI)(CI)(RX)"
|
|
- name: Apply Canary expectations
|
|
run: node tools/merge-canary-test-expectations.mjs
|
|
- name: Run all tests (for non-Linux)
|
|
if: ${{ matrix.os != 'ubuntu-latest' }}
|
|
run: npm run test -- --shard '${{ matrix.shard }}' --test-suite ${{ matrix.suite }} --save-stats-to /tmp/artifacts/${{ github.event_name }}_INSERTID.json
|
|
env:
|
|
PUPPETEER_EXECUTABLE_PATH: ${{ steps.browser.outputs.executablePath }}
|
|
PUPPETEER_TEST_EXPERIMENTAL_CHROME_FEATURES: ${{ matrix.configs == 'experimental' }}
|
|
- name: Run all tests (for Linux)
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
run: xvfb-run --auto-servernum npm run test -- --shard '${{ matrix.shard }}' --test-suite ${{ matrix.suite }} --save-stats-to /tmp/artifacts/${{ github.event_name }}_INSERTID.json
|
|
env:
|
|
PUPPETEER_EXECUTABLE_PATH: ${{ steps.browser.outputs.executablePath }}
|
|
PUPPETEER_TEST_EXPERIMENTAL_CHROME_FEATURES: ${{ matrix.configs == 'experimental' }}
|
|
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
|
if: always()
|
|
with:
|
|
name: test-results-${{ matrix.os }}-${{ matrix.suite }}-${{ matrix.shard }}-${{ matrix.configs }}
|
|
path: /tmp/artifacts/*.json
|
|
|
|
report-results:
|
|
name: 'Report results'
|
|
needs: [canary-chrome-tests]
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
if: ${{ always() }}
|
|
steps:
|
|
- name: Post comment
|
|
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
|
|
if: ${{ needs.canary-chrome-tests.result != 'success'}}
|
|
with:
|
|
# https://github.com/puppeteer/puppeteer/issues/12379
|
|
issue-number: 12379
|
|
body: |
|
|
❌ Tests with Chrome Canary failed
|
|
|
|
---
|
|
[Link](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
|
|
- name: Post comment
|
|
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
|
|
if: ${{ needs.canary-chrome-tests.result == 'success'}}
|
|
with:
|
|
# https://github.com/puppeteer/puppeteer/issues/12379
|
|
issue-number: 12379
|
|
body: |
|
|
✅ Tests with Chrome Canary succeeded
|
|
|
|
---
|
|
[Link](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
|