(imp) use puppeteer-core (18.2 - 21.11) #95
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: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
node-version: | |
- lts/iron | |
- lts/jod | |
puppeteer-version: | |
- '18.2' | |
- '19.0' | |
- '19.1' | |
- '19.2' | |
- '19.3' | |
- '19.4' | |
- '19.5' | |
- '19.6' | |
- '19.7' | |
- '19.8' | |
- '19.9' | |
- '19.10' | |
- '19.11' | |
- '20.0' | |
- '20.1' | |
- '20.2' | |
- '20.3' | |
- '20.4' | |
- '20.5' | |
- '20.6' | |
- '20.7' | |
- '20.8' | |
- '20.9' | |
- '21.0' | |
- '21.1' | |
- '21.2' | |
- '21.3' | |
- '21.4' | |
- '21.5' | |
- '21.6' | |
- '21.7' | |
- '21.8' | |
- '21.9' | |
- '21.10' | |
- '21.11' | |
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: Cache npm packages | |
uses: actions/cache@v4 | |
with: | |
path: ${{ runner.os == 'Windows' && '~/AppData/Roaming/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 }}-${{ hashFiles('**/package-lock.json') }} | |
# 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' }} | |
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 }}.0' | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test | |
env: | |
DEBUG: 'puppeteer:*' | |
DEBUG_MAX_STRING_LENGTH: 'null' | |
- name: Codecov | |
uses: codecov/codecov-action@v5 | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} |