1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-11-15 01:25:25 +01:00
portfolio/.gitlab-ci.yml

17 lines
274 B
YAML
Raw Normal View History

2018-03-28 16:08:24 +02:00
image: node:latest
2018-03-18 20:55:58 +01:00
cache:
paths:
- node_modules/
2018-03-28 16:08:24 +02:00
before_script:
- apt-get update -qq
- apt-get install -y libx11-xcb1 libxcomposite1 libxcursor1 libxfixes3 libxdamage1 libxi6
2018-03-18 20:55:58 +01:00
testing:
stage: test
script:
- npm install
- npm test
- npm run build