kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
59 wiersze
735 B
YAML
59 wiersze
735 B
YAML
image: node:12
|
|
|
|
variables:
|
|
NODE_ENV: test
|
|
|
|
cache:
|
|
key:
|
|
files:
|
|
- yarn.lock
|
|
paths:
|
|
- node_modules
|
|
|
|
stages:
|
|
- lint
|
|
- test
|
|
- build
|
|
|
|
before_script:
|
|
- yarn
|
|
|
|
lint-js:
|
|
stage: lint
|
|
script: yarn test:lint:js
|
|
|
|
lint-sass:
|
|
stage: lint
|
|
script: yarn test:lint:sass
|
|
|
|
jest:
|
|
stage: test
|
|
script: yarn test:jest
|
|
|
|
build-development:
|
|
stage: build
|
|
script: yarn build
|
|
variables:
|
|
NODE_ENV: development
|
|
artifacts:
|
|
paths:
|
|
- static
|
|
|
|
build-production:
|
|
stage: build
|
|
script: yarn build
|
|
variables:
|
|
NODE_ENV: production
|
|
artifacts:
|
|
paths:
|
|
- static
|
|
|
|
i18n:
|
|
stage: build
|
|
script: yarn manage:translations
|
|
variables:
|
|
NODE_ENV: development
|
|
before_script:
|
|
- yarn
|
|
- yarn build
|