From a1fc08a533edfaca862a0dfd0650129a7bad9963 Mon Sep 17 00:00:00 2001 From: Bill Glesias Date: Wed, 20 Aug 2025 13:01:04 -0400 Subject: [PATCH 1/2] feat: support Cypress 15 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 844a2b9..3d3f431 100644 --- a/package.json +++ b/package.json @@ -44,13 +44,13 @@ "@testing-library/dom": "^10.1.0" }, "devDependencies": { - "cypress": "^14.0.0", + "cypress": "^15.0.0", "kcd-scripts": "^11.2.0", "npm-run-all": "^4.1.5", "typescript": "^4.3.5" }, "peerDependencies": { - "cypress": "^12.0.0 || ^13.0.0 || ^14.0.0" + "cypress": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0" }, "eslintConfig": { "extends": "./node_modules/kcd-scripts/eslint.js", From 9782734b6d1e35bb4dfd19fe4e68f69d8780ccb0 Mon Sep 17 00:00:00 2001 From: Bill Glesias Date: Tue, 2 Sep 2025 12:16:42 -0400 Subject: [PATCH 2/2] chore: update node matrix for github actions workflow for Cypress --- .github/workflows/validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 08485a3..2319a23 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -21,7 +21,7 @@ jobs: if: ${{ !contains(github.head_ref, 'all-contributors') }} strategy: matrix: - node: [18, 20] + node: [20, 22, 24] runs-on: ubuntu-latest steps: - name: ⬇️ Checkout repo