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

18 lines
250 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/
testing:
stage: test
script:
2018-04-11 20:51:04 +02:00
- npm i -g gatsby-cli
- export PATH="$PATH:/usr/local/bin/gatsby"
2018-04-08 00:19:54 +02:00
- npm i
2018-03-18 20:55:58 +01:00
- npm test
2018-04-11 20:51:04 +02:00
- npm run build
2018-04-08 13:53:49 +02:00
artifacts:
paths:
- public