bigbuffet-rw/.gitlab-ci.yml

104 lines
1.6 KiB
YAML
Raw Normal View History

image: node:14
2020-04-14 11:07:40 -07:00
variables:
NODE_ENV: test
2020-04-14 16:00:02 -07:00
cache:
key:
files:
- yarn.lock
paths:
- node_modules
2020-04-14 16:00:02 -07:00
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:
2021-09-02 14:57:40 -07:00
- env
2020-04-14 11:07:40 -07:00
- yarn
lint-js:
stage: lint
2022-04-04 08:50:14 -07:00
script: yarn lint:js
only:
changes:
- "**/*.js"
2022-03-18 13:36:15 -07:00
- "**/*.jsx"
- "**/*.ts"
- "**/*.tsx"
- ".eslintignore"
- ".eslintrc.js"
2020-04-14 11:07:40 -07:00
lint-sass:
stage: lint
2022-04-04 08:50:14 -07:00
script: yarn lint:sass
only:
changes:
- "**/*.scss"
- "**/*.css"
- ".stylelintrc.json"
2020-04-14 11:07:40 -07:00
2020-04-14 16:00:02 -07:00
jest:
stage: test
2022-04-04 08:50:14 -07:00
script: yarn test:coverage
only:
changes:
- "**/*.js"
- "**/*.json"
- "app/soapbox/**/*"
- "webpack/**/*"
- "jest.config.js"
- "package.json"
- "yarn.lock"
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:
refs:
- develop
changes:
- "docs/**/*"
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
pages:
stage: deploy
2021-09-06 21:59:19 -07:00
before_script: []
script:
2021-09-06 21:59:19 -07:00
# artifacts are kept between jobs
- mv static public
variables:
NODE_ENV: production
artifacts:
paths:
- public
only:
refs:
- develop