pleroma-fe/.gitlab-ci.yml

48 lines
947 B
YAML
Raw Permalink Normal View History

2016-11-22 23:49:53 +11:00
# This file is a template, and might need editing before it works on your project.
# Official framework image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/node/tags/
2022-03-17 18:33:36 +11:00
image: node:12
2016-11-22 23:49:53 +11:00
2017-03-02 06:42:45 +11:00
stages:
2017-03-09 18:58:17 +11:00
- lint
2017-03-02 06:42:45 +11:00
- build
- test
- deploy
2017-03-02 06:42:45 +11:00
2017-03-09 18:58:17 +11:00
lint:
stage: lint
script:
- yarn
- npm run lint
- npm run stylelint
2017-03-09 18:58:17 +11:00
2016-11-22 23:49:53 +11:00
test:
2017-03-02 06:46:07 +11:00
stage: test
2019-04-29 03:14:35 +10:00
variables:
APT_CACHE_DIR: apt-cache
2016-11-22 23:49:53 +11:00
script:
2019-04-29 03:14:35 +10:00
- mkdir -pv $APT_CACHE_DIR && apt-get -qq update
- apt install firefox-esr -y --no-install-recommends
- firefox --version
2017-02-16 23:48:36 +11:00
- yarn
2019-11-15 08:46:19 +11:00
- yarn unit
2017-02-19 07:26:17 +11:00
2016-11-22 23:49:53 +11:00
build:
2017-03-02 06:46:07 +11:00
stage: build
2016-11-22 23:49:53 +11:00
script:
2017-02-16 23:48:36 +11:00
- yarn
2016-11-23 00:04:54 +11:00
- npm run build
2016-12-09 01:55:12 +11:00
artifacts:
paths:
- dist/
docs-deploy:
stage: deploy
image: alpine:latest
only:
- develop@pleroma/pleroma-fe
before_script:
- apk add curl
script:
- curl -X POST -F"token=$DOCS_PIPELINE_TRIGGER" -F'ref=master' https://git.pleroma.social/api/v4/projects/673/trigger/pipeline