-
Notifications
You must be signed in to change notification settings - Fork 5
38 lines (36 loc) · 1.28 KB
/
puppeteer.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
name: 'Puppeteer'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test_puppeteer_chromium:
name: 'Chromium'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: .
- uses: actions/setup-node@v3
with:
node-version: 16
- run: echo "::set-output name=dir::$(yarn cache dir)"
id: yarn-cache-dir
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: yarn-cache-12-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-cache-12-
- run: bash ./scripts/ci/setup/default.sh
env:
PUPPETEER_PRODUCT: chrome
- run: bash ./scripts/ci/setup/chromium.sh
- run: bash ./scripts/ci/jobs/test_puppeteer_chromium.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: screenshots_puppeteer_chromium
path: __artifacts__/jest/*.png