From 62e763604ed493574a6570480f964c6c08ca8df4 Mon Sep 17 00:00:00 2001 From: sonny Date: Sat, 18 Jan 2020 19:44:11 +0100 Subject: [PATCH] Install all javascript dependencies by default --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb9600d..81a727e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,7 @@ javascript build: paths: - node_modules/ before_script: - - npm install --only=dev + - npm install script: - npx gulp @@ -45,7 +45,7 @@ javascript linting: paths: - node_modules/ before_script: - - npm install --only=dev + - npm install script: - npm run lint