(imp) use puppeteer-core (18.2 - 21.11) #106
Workflow file for this run
This file contains 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: ci | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
node-version: | |
- lts/iron | |
- lts/jod | |
env: | |
PUPPETEER_VERSION: 21.11.0 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: X | |
run: npm config get cache | |
- name: Cache npm packages | |
uses: actions/cache@v4 | |
with: | |
path: ${{ runner.os == 'Windows' && '~/AppData/Local/npm-cache/' || '~/.npm/' }} | |
key: npm-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: npm-${{ runner.os }}-${{ runner.arch }} | |
- name: Cache Puppeteer | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/puppeteer/ | |
key: puppeteer-${{ runner.os }}-${{ runner.arch }}-${{ env.PUPPETEER_VERSION }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test | |
- name: Codecov | |
uses: codecov/codecov-action@v5 | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
integration: | |
runs-on: ${{ matrix.os }} | |
needs: | |
- build | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
puppeteer-version: | |
- '18.2.1' | |
- '19.0.0' | |
- '19.1.1' # NOTE: Should've been 19.1.2 but there's no puppeteer-core@19.1.2 | |
- '19.2.2' | |
- '19.3.0' | |
- '19.4.1' | |
- '19.5.2' | |
- '19.6.3' | |
- '19.7.5' | |
- '19.8.5' | |
- '19.9.1' | |
- '19.10.1' | |
- '19.11.1' | |
- '20.0.0' | |
- '20.1.2' | |
- '20.2.1' | |
- '20.3.0' | |
- '20.4.0' | |
- '20.5.0' | |
- '20.6.0' | |
- '20.7.4' | |
- '20.8.3' | |
- '20.9.0' | |
- '21.0.3' | |
- '21.1.1' | |
- '21.2.1' | |
- '21.3.8' | |
- '21.4.1' | |
- '21.5.2' | |
- '21.6.1' | |
- '21.7.0' | |
- '21.8.0' | |
- '21.9.0' | |
- '21.10.0' | |
- '21.11.0' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js LTS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Cache npm packages | |
uses: actions/cache@v4 | |
with: | |
path: ${{ runner.os == 'Windows' && '~/AppData/Local/npm-cache/' || '~/.npm/' }} | |
key: npm-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: npm-${{ runner.os }}-${{ runner.arch }} | |
- name: Cache Puppeteer | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/puppeteer/ | |
key: puppeteer-${{ runner.os }}-${{ runner.arch }}-${{ matrix.puppeteer-version }} | |
# NOTE: Chrome r112.0.5615.121 is not available on https://edgedl.me.gvt1.com, use 113.0.5672.63 from 20.1.0 | |
- name: Override Chrome revision (for puppeteer@20.0.0) | |
if: ${{ matrix.puppeteer-version == '20.0.0' }} | |
run: | | |
echo "PUPPETEER_BROWSER_REVISION=113.0.5672.63" >> ${{ runner.os == 'Windows' && '$env:GITHUB_ENV' || '$GITHUB_ENV' }} | |
- name: Install Puppeteer ${{ matrix.puppeteer-version }} | |
run: npm install 'puppeteer@${{ matrix.puppeteer-version }}' 'puppeteer-core@${{ matrix.puppeteer-version }}' | |
- name: Install dependencies | |
run: npm ci | |
- name: Verify the Puppeteer and Puppeteer-Core versions | |
run: | | |
node -e "process.exit(require('puppeteer/package.json').version == '${{ matrix.puppeteer-version }}' ? 0 : 1)" | |
node -e "process.exit(require('puppeteer-core/package.json').version == '${{ matrix.puppeteer-version }}' ? 0 : 1)" | |
- name: Test | |
run: npm run test |