From 60abf590e4f7b3c54ddc6d6f296e8e37e32679d0 Mon Sep 17 00:00:00 2001 From: Brian Wente Date: Fri, 14 Aug 2026 16:58:10 -0400 Subject: [PATCH] Guard lint tooling compatibility --- .github/dependabot.yml | 4 ++++ .github/workflows/ci.yml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f0f40c7..12e0a2b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,10 @@ updates: schedule: interval: weekly open-pull-requests-limit: 5 + ignore: + - dependency-name: eslint + update-types: + - version-update:semver-major - package-ecosystem: github-actions directory: / diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15271bf..9b26cce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,9 @@ jobs: - name: Install dependencies run: npm ci + - name: Run lint + run: npm run lint + - name: Run tests run: npm test