We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f739828 commit ed009b7Copy full SHA for ed009b7
.github/workflows/ci.yml
@@ -23,7 +23,7 @@ jobs:
23
- name: Use Node.js
24
uses: actions/setup-node@v2
25
with:
26
- node-version: '14'
+ node-version: "14"
27
28
- name: Install modules
29
run: npm install --no-audit
@@ -35,4 +35,6 @@ jobs:
35
run: npm run build-package
36
37
- name: Run unit tests
38
- run: CHROME_BIN=`which chrome || which chromium-browser` ENV_BROWSER=Chrome_headless npm run test
+ run: |
39
+ export NO_SANDBOX=true
40
+ CHROME_BIN=`which chrome || which chromium-browser` ENV_BROWSER=Chrome_headless npm run test
0 commit comments