We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f054e63 commit b5b172dCopy full SHA for b5b172d
.github/workflows/CI.yml
@@ -79,6 +79,10 @@ jobs:
79
uses: actions/setup-node@v2
80
with:
81
node-version: 18.x
82
+ - name: Install Chrome
83
+ uses: browser-actions/setup-chrome@latest
84
+ with:
85
+ chrome-version: stable
86
- name: Cache dependencies
87
id: cache-dependencies
88
uses: actions/cache@v2
@@ -90,4 +94,8 @@ jobs:
90
94
- name: Install dependencies
91
95
run: npm install
92
96
- name: Run tests
97
+ env:
98
+ CHROME_HEADLESS: 1
99
+ CHROME_PATH: chrome
100
+ CHROME_FLAGS: "--headless --disable-gpu --no-sandbox --enable-features=SharedArrayBuffer,CrossOriginIsolation"
93
101
run: npm test
0 commit comments