From 42f82a736b63e3ceab18512cb36fc1c3e5e22f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Thu, 28 Dec 2023 21:18:41 +0100 Subject: [PATCH] ci: update matrix --- .github/dependabot.yml | 6 ++++++ .github/workflows/ci.yml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 02402d6..e436cfd 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -26,3 +26,9 @@ updates: babel: patterns: - "@babel/*" + eslint: + patterns: + - "eslint" + - "eslint-plugin-*" + - "eslint-config-*" + - "@typescript-eslint/*" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a84d78d..14aa518 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: name: Tests strategy: matrix: - node-version: [14.x, 16.x, 17.x] + node-version: [18.x, 20.x] react-version: [17.x, 18.x] runs-on: ubuntu-latest steps: @@ -43,7 +43,7 @@ jobs: - name: Run tests run: npm run tests-only - name: Submit coverage - if: matrix.node-version == '16.x' + if: matrix.node-version == '20.x' uses: coverallsapp/github-action@v2.2.3 with: github-token: ${{secrets.GITHUB_TOKEN}}