mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
db6085df65
**What kind of change does this PR introduce?** CI change **Did you add tests for your changes?** N/A **If relevant, did you update the documentation?** **Summary** We want to run our test only when relevant parts of the code are changed. Example change to `ng-schematics` should not trigger `puppeteer` test. **Does this PR introduce a breaking change?** No **Other information**
376 lines
12 KiB
YAML
376 lines
12 KiB
YAML
name: CI
|
|
|
|
# Declare default permissions as read only.
|
|
permissions: read-all
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
inspect-code:
|
|
name: Inspect code
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3.0.2
|
|
with:
|
|
fetch-depth: 2
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3.5.1
|
|
with:
|
|
cache: npm
|
|
node-version: latest
|
|
- name: Install dependencies
|
|
run: npm ci --ignore-scripts
|
|
- name: Check code
|
|
run: npm run check
|
|
- name: Lint code
|
|
run: npm run lint
|
|
- name: Lint commits
|
|
run: npm run commitlint
|
|
if: github.event_name != 'pull_request'
|
|
|
|
check-changes:
|
|
name: Check which packages changed
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
changes: ${{ steps.changes.outputs.changes }}
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3.1.0
|
|
with:
|
|
fetch-depth: 2
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3.5.1
|
|
with:
|
|
cache: npm
|
|
node-version: latest
|
|
- name: Install dependencies
|
|
run: npm ci --ignore-scripts
|
|
- name: Build
|
|
run: npm run docs
|
|
- name: Detect changed packages
|
|
uses: dorny/paths-filter@v2.11.1
|
|
id: changes
|
|
with:
|
|
filters: |
|
|
puppeteer:
|
|
- '.github/workflows/ci.yml'
|
|
- 'packages/puppeteer/**'
|
|
- 'packages/puppeteer-core/**'
|
|
- 'docker/**'
|
|
- 'test/**'
|
|
- 'test-d/**'
|
|
- 'tools/mochaRunner/**'
|
|
website:
|
|
- '.github/workflows/ci.yml'
|
|
- 'docs/**'
|
|
- 'website/**'
|
|
ng-schematics:
|
|
- '.github/workflows/ci.yml'
|
|
- 'packages/ng-schematics/**'
|
|
- name: Check if autogenerated docs differ
|
|
run: |
|
|
diff_file=$(mktemp doc_diff_XXXXXX)
|
|
git diff --color > $diff_file
|
|
if [[ -s $diff_file ]]; then
|
|
echo "Please update the documentation by running 'npm run docs'. The following was the diff"
|
|
cat $diff_file
|
|
rm $diff_file
|
|
exit 1
|
|
fi
|
|
rm $diff_file
|
|
|
|
deploy-docs:
|
|
needs: check-changes
|
|
name: Deploy docs (if needed)
|
|
if: ${{ github.event_name != 'pull_request' && contains(fromJSON(needs.check-changes.outputs.changes), 'website') }}
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3.0.2
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3.5.1
|
|
with:
|
|
cache: npm
|
|
node-version: latest
|
|
- name: Install dependencies
|
|
working-directory: ./website
|
|
run: npm ci
|
|
- name: Build website
|
|
working-directory: ./website
|
|
env:
|
|
NODE_OPTIONS: --max-old-space-size=6144
|
|
run: npm run build
|
|
- name: Deploy to GitHub Pages
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./website/build
|
|
user_name: release-please[bot]
|
|
user_email: 55107282+release-please[bot]@users.noreply.github.com
|
|
- name: Trigger Algolia reindexing
|
|
env:
|
|
CRAWLER_USER_ID: ${{secrets.ALGOLIA_CRAWLER_USER_ID}}
|
|
CRAWLER_API_KEY: ${{secrets.ALGOLIA_CRAWLER_API_KEY}}
|
|
CRAWLER_ID: ${{secrets.ALGOLIA_CRAWLER_ID}}
|
|
run: |
|
|
curl -H "Content-Type: application/json" -X POST --user "$CRAWLER_USER_ID:$CRAWLER_API_KEY" \
|
|
"https://crawler.algolia.com/api/1/crawlers/$CRAWLER_ID/reindex"
|
|
|
|
chrome-tests:
|
|
name: ${{ matrix.suite }} tests on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
needs: check-changes
|
|
if: ${{ contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
- macos-latest
|
|
suite:
|
|
- chrome-headless
|
|
- chrome-headful
|
|
- chrome-new-headless
|
|
- chrome-bidi
|
|
exclude:
|
|
- os: windows-latest
|
|
suite: chrome-bidi
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3.0.2
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3.5.1
|
|
with:
|
|
cache: npm
|
|
node-version: latest
|
|
- name: Install dependencies
|
|
run: npm ci --ignore-scripts
|
|
- name: Build packages
|
|
run: npm run build
|
|
- name: Setup cache for Chromium binary
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/.cache/puppeteer/chrome
|
|
key: ${{ runner.os }}-chromium-${{ hashFiles('packages/puppeteer-core/src/revisions.ts') }}
|
|
- name: Install Chromium
|
|
run: npm run postinstall
|
|
- name: Install linux dependencies.
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
run: sudo apt-get install xvfb
|
|
- name: Tests types
|
|
run: npm run test-types
|
|
- name: Run all tests (for non-Linux)
|
|
if: ${{ matrix.os != 'ubuntu-latest' }}
|
|
run: npm run test -- --test-suite ${{ matrix.suite }}
|
|
- name: Run all tests (for Linux)
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
run: xvfb-run --auto-servernum npm run test -- --test-suite ${{ matrix.suite }}
|
|
|
|
chrome-tests-required:
|
|
name: Chrome tests required job
|
|
needs: [check-changes, chrome-tests]
|
|
runs-on: ubuntu-latest
|
|
if: ${{ always() }}
|
|
steps:
|
|
- if: ${{ needs.chrome-tests.result != 'success' && contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
|
run: 'exit 1'
|
|
- run: 'exit 0'
|
|
|
|
firefox-tests:
|
|
name: ${{ matrix.suite }} tests on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
needs: check-changes
|
|
if: ${{ contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macos-latest
|
|
suite:
|
|
- firefox-bidi
|
|
- firefox-headful
|
|
- firefox-headless
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3.5.1
|
|
with:
|
|
cache: npm
|
|
node-version: latest
|
|
- name: Install dependencies
|
|
run: npm ci --ignore-scripts
|
|
- name: Build packages
|
|
run: npm run build
|
|
- name: Setup cache for Firefox binary
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/.cache/puppeteer/firefox
|
|
key: ${{ runner.os }}-firefox-${{ hashFiles('packages/puppeteer-core/src/revisions.ts') }}
|
|
- name: Install Firefox
|
|
env:
|
|
PUPPETEER_PRODUCT: firefox
|
|
run: npm run postinstall
|
|
- name: Install linux dependencies.
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
run: sudo apt-get install xvfb
|
|
- name: Tests types
|
|
run: npm run test-types
|
|
- name: Run all tests (for non-Linux)
|
|
if: ${{ matrix.os != 'ubuntu-latest' }}
|
|
run: npm run test -- --test-suite ${{ matrix.suite }}
|
|
- name: Run all tests (for Linux)
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
run: xvfb-run --auto-servernum npm run test -- --test-suite ${{ matrix.suite }}
|
|
|
|
firefox-tests-required:
|
|
name: Firefox tests required job
|
|
needs: [check-changes, firefox-tests]
|
|
runs-on: ubuntu-latest
|
|
if: ${{ always() }}
|
|
steps:
|
|
- if: ${{ needs.firefox-tests.result != 'success' && contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
|
run: 'exit 1'
|
|
- run: 'exit 0'
|
|
|
|
installation-test-build:
|
|
name: Build installation test
|
|
runs-on: ubuntu-latest
|
|
needs: check-changes
|
|
if: ${{ !startsWith(github.ref_name, 'release-please') && contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3.5.1
|
|
with:
|
|
cache: npm
|
|
node-version: latest
|
|
- name: Install dependencies
|
|
run: npm ci --ignore-scripts
|
|
- name: Build installation test
|
|
run: npm run build --workspace @puppeteer-test/installation
|
|
- name: Pack installation test
|
|
run: npm pack --workspace @puppeteer-test/installation
|
|
- name: Upload installation test
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: installation-test
|
|
path: puppeteer-test-installation-latest.tgz
|
|
|
|
installation-test:
|
|
name: Test ${{ matrix.pkg_manager }} installation on ${{ matrix.os }} (${{ matrix.node }})
|
|
needs: installation-test-build
|
|
if: ${{ !startsWith(github.ref_name, 'release-please') }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macos-latest
|
|
- windows-latest
|
|
node:
|
|
- 14
|
|
- 16
|
|
- 18
|
|
pkg_manager:
|
|
- npm
|
|
steps:
|
|
- name: Download installation test
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: installation-test
|
|
- name: Unpack installation test
|
|
run: tar -xf puppeteer-test-installation-latest.tgz --strip-components 1 -C .
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3.5.1
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
- name: Set up ${{ matrix.pkg_manager }}
|
|
id: workaround
|
|
if: ${{ matrix.node == '14' && matrix.os == 'windows-latest' && matrix.pkg_manager == 'npm' }}
|
|
run: npm install -g ${{ matrix.pkg_manager }}@8.3
|
|
- name: Set up ${{ matrix.pkg_manager }}
|
|
if: ${{ steps.workaround.outcome == 'skipped' }}
|
|
run: npm install -g ${{ matrix.pkg_manager }}@latest
|
|
- name: Install dependencies
|
|
run: ${{ matrix.pkg_manager }} install
|
|
- name: Test
|
|
env:
|
|
PKG_MANAGER: ${{ matrix.pkg_manager }}
|
|
run: ${{ matrix.pkg_manager }} test
|
|
|
|
installation-test-required:
|
|
name: Installation tests required job
|
|
needs: [check-changes, installation-test]
|
|
runs-on: ubuntu-latest
|
|
if: ${{ always() }}
|
|
steps:
|
|
- if: ${{ needs.installation-test.result != 'success' && contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
|
run: 'exit 1'
|
|
- run: 'exit 0'
|
|
|
|
docker-tests:
|
|
name: Test Docker image
|
|
runs-on: ubuntu-latest
|
|
needs: check-changes
|
|
if: ${{ contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3.0.2
|
|
with:
|
|
fetch-depth: 2
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3.5.1
|
|
with:
|
|
cache: npm
|
|
node-version: ${{ matrix.node }}
|
|
- name: Install dependencies
|
|
run: npm ci --ignore-scripts
|
|
- name: Build packages
|
|
run: npm run build
|
|
- name: Pack packages
|
|
run: docker/pack.sh
|
|
- name: Build docker image
|
|
working-directory: ./docker
|
|
run: |
|
|
docker build -t puppeteer-test-image .
|
|
- name: Run smoke test
|
|
working-directory: ./docker
|
|
run: |
|
|
docker run -i --init --cap-add=SYS_ADMIN --rm puppeteer-test-image node -e "`cat test/smoke-test.js`"
|
|
|
|
ng-schematics-tests:
|
|
name: Test Angular Schematics
|
|
runs-on: ubuntu-latest
|
|
needs: check-changes
|
|
if: ${{ contains(fromJSON(needs.check-changes.outputs.changes), 'ng-schematics') }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3.5.1
|
|
with:
|
|
cache: npm
|
|
node-version: latest
|
|
- name: Install dependencies
|
|
run: npm ci --ignore-scripts
|
|
- name: Run tests
|
|
run: npm run test --workspace @puppeteer/ng-schematics
|