Skip to content

Commit ed009b7

Browse files
committed
chore: fix tests
1 parent f739828 commit ed009b7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Use Node.js
2424
uses: actions/setup-node@v2
2525
with:
26-
node-version: '14'
26+
node-version: "14"
2727

2828
- name: Install modules
2929
run: npm install --no-audit
@@ -35,4 +35,6 @@ jobs:
3535
run: npm run build-package
3636

3737
- name: Run unit tests
38-
run: CHROME_BIN=`which chrome || which chromium-browser` ENV_BROWSER=Chrome_headless npm run test
38+
run: |
39+
export NO_SANDBOX=true
40+
CHROME_BIN=`which chrome || which chromium-browser` ENV_BROWSER=Chrome_headless npm run test

0 commit comments

Comments
 (0)