From bb4e2cac5664159306d5ebbdd0d49b2e87abccaf Mon Sep 17 00:00:00 2001 From: ephmo <241746745+ephmo@users.noreply.github.com> Date: Tue, 2 Dec 2025 16:55:46 +0200 Subject: [PATCH] chore: add GitHub Pages linting workflow --- .github/workflows/lint.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..f43fd0e --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,25 @@ +name: Lint + +on: + pull_request: + branches: [main] + +jobs: + linting: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v6 + + - uses: actions/setup-node@v6 + with: + node-version: 24 + cache: 'npm' + + - run: npm ci + + - name: Run ESLint + run: npm run lint + + - name: Run Prettier check + run: npm run format