Skip to content
Snippets Groups Projects
Verified Commit 73882aa9 authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Add gitlab ci pipeline for lint check and building

parent d4db4ede
No related branches found
No related tags found
1 merge request!22Version 1.0.0
image: node:16
cache:
paths:
- dist
- node_modules
stages:
- prepare
- test
- build
prepare:
stage: prepare
script:
- npm install
lint:
stage: test
needs:
- prepare
script:
- npm run lint
build:
stage: build
needs:
- prepare
script:
- npm run build-only
artifacts:
paths:
- dist
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment