mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-15 01:25:25 +01:00
17 lines
274 B
YAML
17 lines
274 B
YAML
image: node:latest
|
|
|
|
cache:
|
|
paths:
|
|
- node_modules/
|
|
|
|
before_script:
|
|
- apt-get update -qq
|
|
- apt-get install -y libx11-xcb1 libxcomposite1 libxcursor1 libxfixes3 libxdamage1 libxi6
|
|
|
|
testing:
|
|
stage: test
|
|
script:
|
|
- npm install
|
|
- npm test
|
|
- npm run build
|