soapbox/.gitlab-ci.yml

47 wiersze
613 B
YAML
Czysty Zwykły widok Historia

2020-04-14 18:07:40 +00:00
image: node:12
variables:
NODE_ENV: test
stages:
- lint
- build
- test
before_script:
- yarn
lint-js:
stage: lint
script: yarn test:lint:js
lint-sass:
stage: lint
script: yarn test:lint:sass
2020-04-14 18:16:08 +00:00
i18n:
stage: lint
script: yarn manage:translations
2020-04-14 18:07:40 +00:00
build-development:
stage: build
script: yarn build:development
2020-04-14 18:20:07 +00:00
variables:
NODE_ENV: development
artifacts:
paths:
- public/packs
build-production:
stage: build
script: yarn build:production
variables:
NODE_ENV: production
2020-04-14 18:07:40 +00:00
artifacts:
paths:
- public/packs
jest:
stage: test
script: yarn test:jest