Skip to content

Commit e970430

Browse files
kauanAfonsoKauanAfonso
authored andcommitted
fix: added rm -rf ~/.cache/puppeteer before installing Chrome to clear any corrupted cache
Signed-off-by: kauanAfonso <kauan.afonso@ibm.com>
1 parent 042e099 commit e970430

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ jobs:
4646
run: npm ci
4747
- name: Install Chrome for Puppeteer (Linux only)
4848
if: runner.os == 'Linux'
49-
run: npx puppeteer browsers install chrome
49+
run: |
50+
rm -rf ~/.cache/puppeteer
51+
npx puppeteer browsers install chrome
5052
- name: Build
5153
run: node packages/build/bin/compile-package -b
5254
- name: Run package tests

0 commit comments

Comments
 (0)