diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0fa2eb38..4d948f13 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,19 +1,24 @@ image: node:latest stages: - - test + - test lint: - stage: test - script: - - npm run lint + stage: test + before_script: + - npm install + script: + - npm run lint compile: - stage: test - script: - - npm run build - -#test: -# stage: test -# script: -# - npm test + stage: test + before_script: + - npm install + script: + - npm run build +# test: +# stage: test +# before_script: +# - npm install +# script: +# - npm test