copykitku/.gitlab-ci.yml

26 lines
272 B
YAML
Raw Normal View History

2020-08-20 17:08:27 +02:00
default:
2021-02-01 15:40:04 +01:00
image: node:15-alpine
2020-08-20 17:11:56 +02:00
before_script:
- yarn install
2020-08-20 17:08:27 +02:00
2021-02-22 19:50:15 +01:00
stages:
- build
- test
- lint
2020-08-20 17:08:27 +02:00
build:
2021-02-22 19:50:15 +01:00
stage: build
2020-08-20 17:08:27 +02:00
script:
- yarn build
2021-02-22 19:50:15 +01:00
test:
stage: test
script:
- yarn test
2020-08-20 17:08:27 +02:00
lint:
2021-02-22 19:50:15 +01:00
stage: lint
allow_failure: true
2020-08-20 17:08:27 +02:00
script:
- yarn lint