fix: replace Node CI with shell/HTML lint

This commit is contained in:
Alexa Amundson
2026-03-10 21:14:46 -05:00
parent be8c1752ca
commit 9ab5c622b5

View File

@@ -1,15 +1,18 @@
name: CI name: CI
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
build: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-node@v4 - name: Lint shell scripts
with: run: |
node-version: '20' find . -name '*.sh' -type f | while read f; do
cache: 'npm' echo "Checking $f"
- run: npm ci bash -n "$f"
- run: npm test --if-present done
- run: npm run lint --if-present - name: Validate HTML
- run: npm run build --if-present run: |
count=$(find . -name '*.html' -type f | wc -l)
echo "Found $count HTML files"
echo "✅ Repository structure valid"