diff options
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e0672f7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +image: node:8 + +stages: + - lint + - build + +lint: + stage: lint + script: + - npm install + - npm run lint + +build: + stage: build + script: + - npm install + - npm run build |