You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
498 B
YAML
26 lines
498 B
YAML
image: node:8.10.0
|
|
|
|
cache:
|
|
paths:
|
|
- node_modules/
|
|
|
|
stages:
|
|
- test
|
|
|
|
test_all:
|
|
stage: test
|
|
script:
|
|
# chrome drivers
|
|
- apt-get update && apt-get install -y libgtk2.0-0 libgtk-3-0 libgconf-2-4 libasound2 libxtst6 libxss1 libnss3 xvfb hunspell-en-us
|
|
- whoami
|
|
- node -v
|
|
- yarn -v
|
|
- yarn install --frozen-lockfile
|
|
- yarn generate
|
|
- Xvfb -ac -screen scrn 1280x2000x24 :9.0 &
|
|
- export DISPLAY=:9.0
|
|
- export LC_ALL=en_US
|
|
- yarn test
|
|
tags:
|
|
- docker
|