Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Drupal Development Environment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Composer
plugin
Drupal Development Environment
Commits
626e1798
Commit
626e1798
authored
9 months ago
by
GitLab CI
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into 'main'
Merging develop into main See merge request
!19
parents
d99fdbde
1f2f840e
No related branches found
Branches containing commit
Tags
v3.2.16
Tags containing commit
1 merge request
!19
Merging develop into main
Pipeline
#1239263
passed
9 months ago
Stage: release
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.cspell-project-words.txt
+23
-0
23 additions, 0 deletions
.cspell-project-words.txt
ahoy.test.yml
+23
-0
23 additions, 0 deletions
ahoy.test.yml
with
46 additions
and
0 deletions
.cspell-project-words.txt
0 → 100644
+
23
−
0
View file @
626e1798
ahoyapi
checkstyle
eslintmodule
lakedrops
mariadbtest
PHANTOMJS
phantomjs
phpcpd
phpcsignore
phpcsmodule
phplintmodule
phploc
phpmetrics
phpmetricsmodule
phpstanmodule
phpunitgroup
phpunitmodule
projectname
stylelintmodule
stylelintprepare
stylelintrc
traefik
usessl
This diff is collapsed.
Click to expand it.
ahoy.test.yml
+
23
−
0
View file @
626e1798
...
...
@@ -105,3 +105,26 @@ commands:
echo "Testing for outdated minor versions ..."
composer outdated --minor-only --strict --no-interaction
usage
:
Verifies that a dependencies are using the latest minor and patch versions
cspellmodule
:
cmd
:
|
export CI_PROJECT_NAME=$1
shift
while read assign; do
export "$assign";
done < <(sed -nr '/variables:/,$ s/ ([A-Z_]+): (.*)/\1=\2/ p' /drupal/web/modules/contrib/$CI_PROJECT_NAME/.gitlab-ci.yml)
export _WEB_ROOT=/drupal/web
export _CURL_TEMPLATES_REPO=project/gitlab_templates
export _CURL_TEMPLATES_REF=default-ref
cd /drupal/web/modules/contrib/$CI_PROJECT_NAME
curl -sOL https://git.drupalcode.org/$_CURL_TEMPLATES_REPO/-/raw/$_CURL_TEMPLATES_REF/scripts/prepare-cspell.php
if [ ! -f .cspell.json ]; then
curl -sOL https://git.drupalcode.org/$_CURL_TEMPLATES_REPO/-/raw/$_CURL_TEMPLATES_REF/assets/.cspell.json
fi
php prepare-cspell.php
rm prepare-cspell.php
touch .cspell-project-words.txt
/drupal/web/core/node_modules/.bin/cspell -c .cspell.json --show-suggestions --show-context --no-progress $_CSPELL_EXTRA ** || EXIT_CODE=$?
if [ "$EXIT_CODE" != "" ]; then
/drupal/web/core/node_modules/.bin/cspell -c .cspell.json --words-only --unique --no-progress $_CSPELL_EXTRA ** | sort -f
fi
rm .cspell.json
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment