Files
blackroad-apps/.github/workflows/ci.yml
dependabot[bot] 12cf538458 ci: bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-16 00:46:19 +00:00

19 lines
485 B
YAML

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Lint shell scripts
run: |
find . -name '*.sh' -type f | while read f; do
echo "Checking $f"
bash -n "$f"
done
- name: Validate HTML
run: |
count=$(find . -name '*.html' -type f | wc -l)
echo "Found $count HTML files"
echo "✅ Repository structure valid"