-
Notifications
You must be signed in to change notification settings - Fork 1
102 lines (91 loc) · 2.63 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
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' }}