2019-01-03 00:21:29 +00:00
|
|
|
image: node:latest
|
2019-01-01 13:51:29 +00:00
|
|
|
|
|
|
|
stages:
|
2019-01-02 23:26:50 +00:00
|
|
|
- test
|
2019-01-01 13:51:29 +00:00
|
|
|
- build
|
|
|
|
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- node_modules/
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- yarn install
|
|
|
|
|
2019-01-02 23:26:50 +00:00
|
|
|
lint:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- yarn test:lint
|
|
|
|
|
2019-01-01 13:51:29 +00:00
|
|
|
pages:
|
|
|
|
stage: build
|
|
|
|
script:
|
2019-01-03 00:21:29 +00:00
|
|
|
- yarn build
|
2019-01-01 13:51:29 +00:00
|
|
|
- gzip -k -6 $(find public/ -type f)
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- public
|
|
|
|
only:
|
|
|
|
- master
|