From 706d20731d41c48fc9a7c44ca425bf2c1a825435 Mon Sep 17 00:00:00 2001 From: BERNARD Hugo <hugo.bernard9@etu.univ-lorraine.fr> Date: Wed, 3 Nov 2021 14:38:00 +0000 Subject: [PATCH] Revert "Update .gitlab-ci.yml" This reverts commit 1eab3c36a7265167ff9542c347678ac84f04046f --- php.gitlab-ci.yml => .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) rename php.gitlab-ci.yml => .gitlab-ci.yml (93%) diff --git a/php.gitlab-ci.yml b/.gitlab-ci.yml similarity index 93% rename from php.gitlab-ci.yml rename to .gitlab-ci.yml index 07bb4fc..31f2843 100644 --- a/php.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,6 +23,8 @@ before_script: # Install and run Composer - curl -sS https://getcomposer.org/installer | php - php composer.phar install + # Install npm deps + - npm install # Bring in any services we need http://docs.gitlab.com/ee/ci/docker/using_docker_images.html#what-is-a-service # See http://docs.gitlab.com/ee/ci/services/README.html for examples. @@ -40,3 +42,7 @@ variables: phplint: script: ./vendor/bin/phplint +stylelint: + script: + npx stylelint "**/*.css" + npx stylelint "**/*.scss" \ No newline at end of file -- GitLab