soapbox/.gitlab-ci.yml

66 wiersze
1008 B
YAML
Czysty Zwykły widok Historia

2020-04-14 18:07:40 +00:00
image: node:12
variables:
NODE_ENV: test
2020-04-14 23:00:02 +00:00
cache:
key:
files:
- yarn.lock
2020-04-14 23:00:02 +00:00
paths:
- node_modules
2020-04-14 18:07:40 +00:00
stages:
- lint
- test
2020-04-14 23:00:02 +00:00
- build
2020-08-29 18:18:51 +00:00
- deploy-docs
2020-04-14 18:07:40 +00: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 23:00:02 +00:00
jest:
stage: test
script: yarn test:jest
2020-04-14 18:16:08 +00:00
2020-04-14 18:20:07 +00:00
build-production:
stage: build
script: yarn build
2020-04-14 18:20:07 +00:00
variables:
NODE_ENV: production
2020-04-14 18:07:40 +00:00
artifacts:
paths:
- static
2020-04-14 18:07:40 +00:00
2020-08-29 18:18:51 +00:00
deploy-docs:
stage: deploy-docs
image: python:3.8-alpine
2020-08-29 21:51:17 +00:00
before_script:
- apk add curl
script:
- curl -X POST -F"token=$DOCS_TRIGGER_PIPELINE" -F'ref=master' https://gitlab.com/api/v4/projects/15685485/trigger/pipeline
2020-08-29 18:18:51 +00:00
only:
refs:
2020-08-29 21:51:17 +00:00
- develop
2020-08-29 18:18:51 +00:00
changes:
2020-08-29 21:51:17 +00:00
- docs/*
2020-08-29 18:18:51 +00:00
2020-06-12 06:02:18 +00: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