Skip to content

Commit ae5129e

Browse files
committed
Fix gitlab-ci
1 parent 130df7a commit ae5129e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ test:
3636
image: node:${NODE_VERSION}
3737
before_script:
3838
- cd ${WORKDIR}
39-
- apt-get update && apt-get install -y chromium
39+
- apt-get update
40+
- apt-get install -y chromium
4041
- export CHROME_BIN=/usr/bin/chromium
4142
- npm ci
4243
script:

frontend-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": "ng build",
99
"watch": "ng build --watch --configuration development",
1010
"test": "ng test",
11-
"test:headless": "ng test --watch=false --browsers=ChromeHeadless",
11+
"test:headless": "ng test --watch=false --browsers=ChromeHeadless --no-sandbox",
1212
"coverage": "ng test --no-watch --code-coverage",
1313
"lint": "ng lint",
1414
"serve": "node dist/angular-starter/server/server.mjs",

0 commit comments

Comments
 (0)