31 lines
371 B
YAML
31 lines
371 B
YAML
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
|
|
|
|
build-development:
|
|
stage: build
|
|
script: yarn build:development
|
|
artifacts:
|
|
paths:
|
|
- public/packs
|
|
|
|
jest:
|
|
stage: test
|
|
script: yarn test:jest
|