mirror of
https://github.com/blackboxprogramming/blackroad-apps.git
synced 2026-03-17 07:57:18 -05:00
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>
19 lines
485 B
YAML
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"
|