Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2022-05-26 03:34:15 +0300
committerSarah German <sgerman@gitlab.com>2022-05-26 03:34:15 +0300
commit696907ee057c3948f72c6373749aa0b837796e06 (patch)
treeb7a493dbd77517575bf1e99b7e6010d7b945c87f /Makefile
parentc7fc99fd289e977dd08f7b963f18c9ee0c48e34f (diff)
Remove duplicate tests run
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7bbe53cb..75400fdf 100644
--- a/Makefile
+++ b/Makefile
@@ -96,12 +96,17 @@ brew-bundle:
@(command -v brew > /dev/null 2>&1) && brew bundle --no-lock || true
test: setup brew-bundle
- @printf "\n$(INFO)INFO: Running all tests..$(INFO_END)\n"
- @bundle exec rspec && yarn test && yarn eslint && yarn prettier && hadolint latest.Dockerfile .gitpod.Dockerfile **/*.Dockerfile && yamllint .gitlab-ci.yml content/_data
+ @printf "\n$(INFO)INFO: Running RSpec tests..$(INFO_END)\n"
@bundle exec rspec
+ @printf "\n$(INFO)INFO: Running Jest tests..$(INFO_END)\n"
@yarn test
+ @printf "\n$(INFO)INFO: Running ESLint tests..$(INFO_END)\n"
@yarn eslint
+ @printf "\n$(INFO)INFO: Running Prettier tests..$(INFO_END)\n"
@yarn prettier
+ @printf "\n$(INFO)INFO: Running Stylelint tests..$(INFO_END)\n"
@scripts/run-stylelint.sh
+ @printf "\n$(INFO)INFO: Running hadolint tests..$(INFO_END)\n"
@hadolint latest.Dockerfile .gitpod.Dockerfile **/*.Dockerfile
+ @printf "\n$(INFO)INFO: Running yamllint tests..$(INFO_END)\n"
@yamllint .gitlab-ci.yml content/_data