2016-11-22 12:49:53 +00: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-07-18 03:48:11 +00:00
|
|
|
image: node:16
|
2016-11-22 12:49:53 +00:00
|
|
|
|
2017-03-01 19:42:45 +00:00
|
|
|
stages:
|
2023-04-28 22:12:38 +00:00
|
|
|
- check-changelog
|
2017-03-09 07:58:17 +00:00
|
|
|
- lint
|
2017-03-01 19:42:45 +00:00
|
|
|
- build
|
|
|
|
- test
|
2019-10-03 15:48:16 +00:00
|
|
|
- deploy
|
2017-03-01 19:42:45 +00:00
|
|
|
|
2023-04-28 22:20:44 +00:00
|
|
|
# https://git.pleroma.social/help/ci/yaml/workflow.md#switch-between-branch-pipelines-and-merge-request-pipelines
|
|
|
|
workflow:
|
|
|
|
rules:
|
|
|
|
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
|
|
|
|
- if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS
|
|
|
|
when: never
|
|
|
|
- if: $CI_COMMIT_BRANCH
|
|
|
|
|
2023-04-28 22:12:38 +00:00
|
|
|
check-changelog:
|
|
|
|
stage: check-changelog
|
|
|
|
image: alpine
|
|
|
|
rules:
|
|
|
|
- if: $CI_MERGE_REQUEST_SOURCE_PROJECT_PATH == 'pleroma/pleroma-fe' && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME =~ /^renovate/
|
|
|
|
when: never
|
|
|
|
- if: $CI_MERGE_REQUEST_SOURCE_PROJECT_PATH == 'pleroma/pleroma-fe' && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == 'weblate'
|
|
|
|
when: never
|
|
|
|
- if: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "develop"
|
|
|
|
before_script: ''
|
|
|
|
after_script: ''
|
|
|
|
cache: {}
|
|
|
|
script:
|
|
|
|
- apk add git
|
|
|
|
- sh ./tools/check-changelog
|
|
|
|
|
2017-03-09 07:58:17 +00:00
|
|
|
lint:
|
|
|
|
stage: lint
|
|
|
|
script:
|
|
|
|
- yarn
|
|
|
|
- npm run lint
|
2020-08-04 16:12:13 +00:00
|
|
|
- npm run stylelint
|
2017-03-09 07:58:17 +00:00
|
|
|
|
2016-11-22 12:49:53 +00:00
|
|
|
test:
|
2017-03-01 19:46:07 +00:00
|
|
|
stage: test
|
2024-05-23 08:36:15 +00:00
|
|
|
tags:
|
|
|
|
- amd64
|
2019-04-28 17:14:35 +00:00
|
|
|
variables:
|
|
|
|
APT_CACHE_DIR: apt-cache
|
2016-11-22 12:49:53 +00:00
|
|
|
script:
|
2019-04-28 17:14:35 +00:00
|
|
|
- mkdir -pv $APT_CACHE_DIR && apt-get -qq update
|
|
|
|
- apt install firefox-esr -y --no-install-recommends
|
|
|
|
- firefox --version
|
2017-02-16 12:48:36 +00:00
|
|
|
- yarn
|
2019-11-14 21:46:19 +00:00
|
|
|
- yarn unit
|
2017-02-18 20:26:17 +00:00
|
|
|
|
2016-11-22 12:49:53 +00:00
|
|
|
build:
|
2017-03-01 19:46:07 +00:00
|
|
|
stage: build
|
2024-05-23 08:36:15 +00:00
|
|
|
tags:
|
|
|
|
- amd64
|
2016-11-22 12:49:53 +00:00
|
|
|
script:
|
2017-02-16 12:48:36 +00:00
|
|
|
- yarn
|
2016-11-22 13:04:54 +00:00
|
|
|
- npm run build
|
2016-12-08 14:55:12 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- dist/
|
2019-10-03 15:48:16 +00:00
|
|
|
|
|
|
|
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
|