diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 86353bc6..976b8d38 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,12 +24,14 @@ lint: <<: *global_cache policy: pull-push -# Test: -# stage: Test -# script: -# - npm test -# cache: -# <<: *global_cache +test: + stage: test + before_script: + - npm ci --cache .npm --prefer-offline + script: + - npm test + cache: + <<: *global_cache build: stage: build