puppeteer/.github/workflows/ci.yml

313 lines
8.5 KiB
YAML
Raw Normal View History

2022-05-31 12:55:46 +00:00
name: CI
# Declare default permissions as read only.
permissions: read-all
on:
push:
branches:
- main
pull_request:
branches:
2022-06-23 07:12:51 +00:00
- '**'
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
2022-07-01 11:52:39 +00:00
check-docs:
name: Check documentation
runs-on: ubuntu-latest
outputs:
needs_deploying: ${{ steps.needs_deploying.outputs.value }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3.3.0
with:
cache: npm
- name: Cache Chromium binary directory
uses: actions/cache@v3
with:
path: .local-chromium
key: ${{ runner.os }}-chromium-${{ hashFiles('src/revisions.ts') }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run docs
- name: Check if autogenerated docs differ
run: $(git diff) || exit 1
- name: Check if docs need to be deployed
id: needs_deploying
run: |
if [[ $(git diff @~ -- ./docs ./website) ]]; then
needs_deploying=true
else
needs_deploying=false
fi
echo "::set-output name=value::$needs_deploying"
deploy-docs:
needs: check-docs
name: Deploy docs (if needed)
if: ${{ needs.check-docs.outputs.needs_deploying == 'true' && github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Node.js
uses: actions/setup-node@v3.3.0
with:
cache: npm
- name: Install dependencies
working-directory: ./website
run: npm ci
- name: Build website
working-directory: ./website
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
2022-05-31 12:55:46 +00:00
linux:
# https://github.com/actions/virtual-environments#available-environments
runs-on: ubuntu-latest
strategy:
matrix:
# Include all major maintenance + active LTS + current Node.js versions.
# https://github.com/nodejs/Release#release-schedule
2022-06-01 11:53:17 +00:00
node: [14, 16, 18]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Node.js
uses: actions/setup-node@v3.3.0
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: |
sudo apt-get install xvfb
# Ensure both a Chromium and a Firefox binary are available.
PUPPETEER_PRODUCT=firefox npm install
npm install
ls .local-chromium .local-firefox
- name: Build
run: |
npm run build
- name: Run code checks
run: |
2022-06-10 09:55:53 +00:00
npm run test:pinned-deps
npm run lint
2022-06-10 09:55:53 +00:00
npm run test:protocol-revision
2022-06-27 08:57:31 +00:00
npm run test:types
- name: Run commit lint
run: |
npm run commitlint
if: github.event_name != 'pull_request'
- name: Run unit tests with coverage
uses: nick-invision/retry@v2
env:
CHROMIUM: true
with:
max_attempts: 3
command: xvfb-run --auto-servernum npm run test:unit:coverage
timeout_minutes: 10
- name: Run unit tests on Firefox
uses: nick-invision/retry@v2
env:
FIREFOX: true
MOZ_WEBRENDER: 0
with:
max_attempts: 3
timeout_minutes: 10
2022-06-10 09:55:53 +00:00
command: xvfb-run --auto-servernum npm run test:unit:firefox
- name: Test bundling and installation
env:
CHROMIUM: true
run: |
# Note: this modifies package.json to test puppeteer-core.
2022-06-10 09:55:53 +00:00
npm run test:install
# Undo those changes.
git checkout --force
macos:
# https://github.com/actions/virtual-environments#available-environments
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Node.js
uses: actions/setup-node@v3.3.0
with:
# Test only the oldest maintenance LTS Node.js version.
# https://github.com/nodejs/Release#release-schedule
node-version: 14
- name: Install dependencies
run: |
# Test platform-specific browser binary fetching for both
# Chromium and Firefox.
PUPPETEER_PRODUCT=firefox npm install
npm install
ls .local-chromium .local-firefox
- name: Build
run: |
npm run build
- name: Run unit tests
env:
CHROMIUM: true
run: |
2022-06-10 09:55:53 +00:00
npm run test:unit
- name: Run unit tests on Firefox
uses: nick-invision/retry@v2
with:
max_attempts: 3
timeout_minutes: 10
2022-06-10 09:55:53 +00:00
command: npm run test:unit:firefox
windows:
# https://github.com/actions/virtual-environments#available-environments
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Node.js
uses: actions/setup-node@v3.3.0
with:
# Test only the oldest maintenance LTS Node.js version.
# https://github.com/nodejs/Release#release-schedule
node-version: 14
- name: Install dependencies
run: |
# Test platform-specific browser binary fetching for both
# Chromium and Firefox.
$env:PUPPETEER_PRODUCT='firefox'
npm install
Remove-Item Env:\PUPPETEER_PRODUCT
npm install
Get-ChildItem -Path .local-chromium,.local-firefox
- name: Build
run: |
npm run build
- name: Run unit tests
env:
CHROMIUM: true
run: |
2022-06-10 09:55:53 +00:00
npm run test:unit
- name: Run unit tests on Firefox
uses: nick-invision/retry@v2
continue-on-error: true
env:
FIREFOX: true
MOZ_WEBRENDER: 0
with:
max_attempts: 3
timeout_minutes: 10
2022-06-10 09:55:53 +00:00
command: npm run test:unit:firefox
2022-04-22 10:40:18 +00:00
2022-05-31 12:55:46 +00:00
linux-headful:
2022-04-22 10:40:18 +00:00
# https://github.com/actions/virtual-environments#available-environments
runs-on: ubuntu-latest
strategy:
matrix:
2022-06-27 10:35:09 +00:00
# Include a current Node.js version.
2022-05-31 14:55:40 +00:00
# https://github.com/nodejs/Release#release-schedule
2022-06-27 10:35:09 +00:00
node: [18]
2022-04-22 10:40:18 +00:00
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Node.js
uses: actions/setup-node@v3.3.0
2022-04-22 10:40:18 +00:00
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: |
sudo apt-get install xvfb
# Ensure both a Chromium and a Firefox binary are available.
PUPPETEER_PRODUCT=firefox npm install
2022-04-22 10:40:18 +00:00
npm install
ls .local-chromium .local-firefox
2022-04-22 10:40:18 +00:00
- name: Build
run: |
npm run build
- name: Run unit tests in headful mode
uses: nick-invision/retry@v2
env:
CHROMIUM: true
HEADLESS: false
with:
max_attempts: 1
2022-06-10 09:55:53 +00:00
command: xvfb-run --auto-servernum npm run test:unit
2022-04-22 10:40:18 +00:00
timeout_minutes: 10
2022-06-27 10:35:09 +00:00
linux-chrome-headless:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# https://github.com/actions/virtual-environments#available-environments
2022-06-27 10:35:09 +00:00
os: [ubuntu-latest]
2022-05-31 14:55:40 +00:00
# https://github.com/nodejs/Release#release-schedule
2022-06-27 10:35:09 +00:00
node: [18]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Node.js
uses: actions/setup-node@v3.3.0
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: |
2022-06-27 10:35:09 +00:00
sudo apt-get install xvfb
# Ensure both a Chromium and a Firefox binary are available.
PUPPETEER_PRODUCT=firefox npm install
npm install
2022-06-27 10:35:09 +00:00
ls .local-chromium .local-firefox
- name: Build
run: |
npm run build
- name: Run unit tests
uses: nick-invision/retry@v2
env:
CHROMIUM: true
with:
max_attempts: 1
2022-06-27 10:35:09 +00:00
command: xvfb-run --auto-servernum npm run test:unit:chrome-headless
timeout_minutes: 10