Skip to content

Commit a02466b

Browse files
committed
ci: decommission of bootlint
The following issue won't be fixed: Closes #316 Part of #1669
1 parent bb4afed commit a02466b

File tree

2 files changed

+0
-29
lines changed

2 files changed

+0
-29
lines changed

.github/workflows/static-analysis.yml

-21
Original file line numberDiff line numberDiff line change
@@ -115,27 +115,6 @@ jobs:
115115
- name: Check pom.xml
116116
run: ./src/main/scripts/execute-command.sh check-pom
117117

118-
run-bootlint:
119-
name: Run Bootstrap linter
120-
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
121-
runs-on: ubuntu-20.04
122-
steps:
123-
- name: Clone source code
124-
uses: actions/[email protected] # https://github.com/actions/checkout
125-
with:
126-
# Whether to configure the token or SSH key with the local git config. Default: true
127-
persist-credentials: false
128-
- name: Install bootlint
129-
# https://docs.npmjs.com/cli/v8/commands/npm-install
130-
run: >-
131-
npm install \
132-
--no-audit \
133-
--no-fund \
134-
--global \
135-
136-
- name: Run bootlint
137-
run: ./src/main/scripts/execute-command.sh bootlint
138-
139118
run-rflint:
140119
name: Run RobotFramework linter
141120
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on

src/main/scripts/execute-command.sh

-8
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@ case ${1:-} in
2222
"$ROOTDIR/infra/vagrant/provisioning/bootstrap.yml" \
2323
"$ROOTDIR/src/main/scripts/ci/ansible/deploy.yml"
2424
;;
25-
'bootlint')
26-
find "$ROOTDIR/src/main" \
27-
-type f \
28-
-name '*.html' \
29-
-print0 \
30-
| xargs -0 bootlint --disable W013
31-
;;
3225
'check-license')
3326
exec "$MVN" \
3427
--batch-mode \
@@ -136,7 +129,6 @@ case ${1:-} in
136129
echo >&2
137130
echo >&2 "Where <command> is one of:"
138131
echo >&2 '- ansible-lint'
139-
echo >&2 '- bootlint'
140132
echo >&2 '- check-license'
141133
echo >&2 '- check-pom'
142134
echo >&2 '- checkstyle'

0 commit comments

Comments
 (0)