ci(lint): keep job name 'Syntax check bootstrap.js' for branch protection

Renaming the job broke the master protection rule, which requires a check
named exactly 'Syntax check bootstrap.js'. The job still checks both bootstrap
scripts, just under the protected name.
This commit is contained in:
2026-08-10 09:33:01 -07:00
parent 301770321e
commit ea75e94b3e
+3 -1
View File
@@ -28,7 +28,9 @@ jobs:
run: shellcheck -S warning setup.sh run: shellcheck -S warning setup.sh
bootstrap-syntax: bootstrap-syntax:
name: Syntax check bootstrap scripts # Keep this job name stable: branch protection on master requires a status
# check named exactly "Syntax check bootstrap.js".
name: Syntax check bootstrap.js
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code