copykitku/.gitlab-ci.yml

26 lines
272 B
YAML

default:
image: node:15-alpine
before_script:
- yarn install
stages:
- build
- test
- lint
build:
stage: build
script:
- yarn build
test:
stage: test
script:
- yarn test
lint:
stage: lint
allow_failure: true
script:
- yarn lint