mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-26 17:24:45 +00:00
20 lines
377 B
YAML
20 lines
377 B
YAML
dist: trusty
|
|
sudo: false
|
|
|
|
language: node_js
|
|
node_js:
|
|
- "8"
|
|
|
|
cache:
|
|
directories:
|
|
- ./node_modules
|
|
|
|
install:
|
|
- npm install
|
|
|
|
script:
|
|
# Use Chromium instead of Chrome.
|
|
- export CHROME_BIN=chromium-browser
|
|
- xvfb-run -a npm run test -- --single-run --no-progress --browser=ChromeNoSandbox
|
|
#- xvfb-run -a npm run e2e -- --no-progress --config=protractor-ci.conf.js
|