bigbuffet-rw/.gitlab-ci.yml

63 lines
945 B
YAML
Raw Normal View History

2020-04-14 11:07:40 -07:00
image: node:12
variables:
NODE_ENV: test
2020-04-14 16:00:02 -07:00
cache:
key:
files:
- yarn.lock
2020-04-14 16:00:02 -07:00
paths:
- node_modules
2020-04-14 11:07:40 -07:00
stages:
- lint
- test
2020-04-14 16:00:02 -07:00
- build
2020-08-30 11:59:39 -07:00
- deploy
2020-04-14 11:07:40 -07:00
before_script:
- yarn
lint-js:
stage: lint
script: yarn test:lint:js
lint-sass:
stage: lint
script: yarn test:lint:sass
2020-04-14 16:00:02 -07:00
jest:
stage: test
script: yarn test:jest
2020-04-14 11:16:08 -07:00
2020-04-14 11:20:07 -07:00
build-production:
stage: build
script: yarn build
2020-04-14 11:20:07 -07:00
variables:
NODE_ENV: production
2020-04-14 11:07:40 -07:00
artifacts:
paths:
- static
2020-04-14 11:07:40 -07:00
2020-08-30 11:59:39 -07:00
docs-deploy:
stage: deploy
image: alpine:latest
2020-08-29 14:51:17 -07:00
before_script:
- apk add curl
script:
- curl -X POST -F"token=$CI_JOB_TOKEN" -F'ref=master' https://gitlab.com/api/v4/projects/15685485/trigger/pipeline
2020-08-29 11:18:51 -07:00
only:
2020-08-30 13:09:11 -07:00
- develop
2020-08-29 11:18:51 -07:00
2020-06-11 23:02:18 -07:00
# Supposed to fail when translations are outdated, instead always passes
#
# i18n:
# stage: build
# script: yarn manage:translations
# variables:
# NODE_ENV: development
# before_script:
# - yarn
# - yarn build