[ci] pipelines and unit tests

This commit is contained in:
Laura Liberda 2021-02-22 19:50:15 +01:00
parent cc87a02aae
commit 532097c779

View file

@ -3,10 +3,23 @@ default:
before_script: before_script:
- yarn install - yarn install
stages:
- build
- test
- lint
build: build:
stage: build
script: script:
- yarn build - yarn build
test:
stage: test
script:
- yarn test
lint: lint:
stage: lint
allow_failure: true
script: script:
- yarn lint - yarn lint