2022-05-31 12:55:46 +00:00
|
|
|
name: CI
|
2021-01-12 10:48:33 +00:00
|
|
|
|
2022-02-15 14:50:51 +00:00
|
|
|
# Declare default permissions as read only.
|
|
|
|
permissions: read-all
|
|
|
|
|
2021-01-12 10:48:33 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2022-06-23 07:12:51 +00:00
|
|
|
- '**'
|
2021-01-12 10:48:33 +00:00
|
|
|
|
2022-05-30 09:49:19 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-01-12 10:48:33 +00:00
|
|
|
jobs:
|
2022-07-01 13:03:12 +00:00
|
|
|
inspect-code:
|
|
|
|
name: Inspect code
|
|
|
|
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:
|
|
|
|
node-version: 18
|
|
|
|
- name: Setup cache for Chromium binary
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: .local-chromium
|
|
|
|
key: ${{ runner.os }}-chromium-${{ hashFiles('src/revisions.ts') }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
|
|
|
- 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'
|
|
|
|
|
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
|
2022-07-01 13:03:12 +00:00
|
|
|
- name: Setup cache for Chromium binary
|
2022-07-01 11:52:39 +00:00
|
|
|
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-07-01 13:03:12 +00:00
|
|
|
tests:
|
|
|
|
name: ${{ matrix.spec.name }} tests (${{ matrix.spec.node }})
|
|
|
|
runs-on: ${{ matrix.spec.machine }}
|
|
|
|
continue-on-error: true
|
2021-01-12 10:48:33 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-07-01 13:03:12 +00:00
|
|
|
spec:
|
|
|
|
- name: Linux
|
|
|
|
machine: ubuntu-latest
|
|
|
|
node: 14
|
|
|
|
- name: Linux
|
|
|
|
machine: ubuntu-latest
|
|
|
|
node: 16
|
|
|
|
- name: Linux
|
|
|
|
machine: ubuntu-latest
|
|
|
|
node: 18
|
|
|
|
- name: macOS
|
|
|
|
machine: macos-latest
|
|
|
|
node: 14
|
|
|
|
- name: Windows
|
|
|
|
machine: windows-latest
|
|
|
|
node: 14
|
2021-01-12 10:48:33 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-02 08:30:11 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-01-12 10:48:33 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2022-07-01 13:03:12 +00:00
|
|
|
- name: Setup cache for Chromium binary
|
|
|
|
uses: actions/cache@v3
|
2021-05-26 13:30:16 +00:00
|
|
|
with:
|
2022-07-01 13:03:12 +00:00
|
|
|
path: .local-chromium
|
|
|
|
key: ${{ runner.os }}-chromium-${{ hashFiles('src/revisions.ts') }}
|
|
|
|
- name: Setup cache for Firefox binary
|
|
|
|
uses: actions/cache@v3
|
2021-01-27 13:57:41 +00:00
|
|
|
with:
|
2022-07-01 13:03:12 +00:00
|
|
|
path: .local-firefox
|
|
|
|
key: ${{ runner.os }}-firefox-${{ hashFiles('src/revisions.ts') }}
|
2021-01-27 13:57:41 +00:00
|
|
|
- name: Set up Node.js
|
2022-06-07 12:37:49 +00:00
|
|
|
uses: actions/setup-node@v3.3.0
|
2021-01-27 13:57:41 +00:00
|
|
|
with:
|
2022-07-01 13:03:12 +00:00
|
|
|
node-version: ${{ matrix.spec.node }}
|
|
|
|
- name: Install dependencies with Chromium
|
|
|
|
run: npm install
|
|
|
|
- name: Install Firefox
|
2021-03-05 09:00:56 +00:00
|
|
|
env:
|
2022-07-01 13:03:12 +00:00
|
|
|
PUPPETEER_PRODUCT: firefox
|
|
|
|
run: npm install
|
|
|
|
- name: Install linux dependencies.
|
|
|
|
if: ${{ matrix.spec.name == 'Linux' }}
|
|
|
|
run: sudo apt-get install xvfb
|
2022-04-22 10:40:18 +00:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
npm run build
|
2022-07-01 13:03:12 +00:00
|
|
|
npm run build:test
|
|
|
|
- name: Test types
|
|
|
|
run: npm run test:types
|
|
|
|
- name: Run all tests (only on Linux)
|
|
|
|
id: full-test
|
|
|
|
if: ${{ matrix.spec.name == 'Linux' }}
|
|
|
|
run: xvfb-run --auto-servernum npm test
|
|
|
|
- name: Test Chrome
|
|
|
|
id: test-chrome
|
|
|
|
if: ${{ steps.full-test.conclusion == 'skipped' }}
|
|
|
|
run: npm run test:chrome
|
|
|
|
- name: Test Firefox
|
|
|
|
if: ${{ steps.test-chrome.conclusion != 'skipped' }}
|
|
|
|
run: npm run test:firefox
|
|
|
|
- name: Test bundling and installation
|
2022-04-25 11:11:23 +00:00
|
|
|
run: |
|
2022-07-01 13:03:12 +00:00
|
|
|
# Note: this modifies package.json to test puppeteer-core, so we test this last.
|
|
|
|
npm run test:install
|