From 606ad2ddaa42e10d2cd74aee6cd79b99bf1d9623 Mon Sep 17 00:00:00 2001 From: Rishi Bhardwaj Date: Wed, 3 Jun 2026 21:20:33 +0530 Subject: [PATCH] Add CI workflow to validate website files --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e1f5980 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: Website Check + +on: + pull_request: + push: + branches: + - main + +jobs: + validate: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Check HTML exists + run: test -f index.html + + - name: Check CSS exists + run: test -f style.css + + - name: Validation Complete + run: echo "Website structure looks good."