From 4a33c50fb6213e3d0f83f55b7a97f9e495893ffe Mon Sep 17 00:00:00 2001
From: Yassine Doghri <yassine@doghri.fr>
Date: Wed, 12 May 2021 15:23:50 +0000
Subject: [PATCH] ci: add phpstan static analysis to .gitlabci.yml

---
 .eslintrc.json |  1 -
 .gitlab-ci.yml | 11 ++++++++---
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/.eslintrc.json b/.eslintrc.json
index 21a6b5001b..cff4e85ef5 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -8,7 +8,6 @@
   "extends": [
     "eslint:recommended",
     "plugin:@typescript-eslint/recommended",
-    "prettier/@typescript-eslint",
     "plugin:prettier/recommended"
   ],
   "parserOptions": {
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0b921f0331..0ce56bb888 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -44,13 +44,18 @@ before_script:
 tests:
   stage: quality
   script:
-    - vendor/bin/phpunit
+    - composer test
+
+analysis:
+  stage: quality
+  script:
+    # run phpstan
+    - composer analyse
 
 code-review:
   stage: quality
   script:
-    # run rector
-    - vendor/bin/rector process --dry-run
+    - composer rector
 
 bundle_app:
   stage: bundle
-- 
GitLab