Skip to content

Commit

Permalink
feat(cypress12): support Cypress 12 (component-driven#148)
Browse files Browse the repository at this point in the history
* feat(cypress12): support Cypress 12

* Switch to node lts notation. Update package lock.

* Shift lts versions. Update package lock.
  • Loading branch information
johnhwhite authored Dec 16, 2022
1 parent b6391e6 commit 75cac7b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
cypress-version: [10, 11]
node-version: [lts/-2, lts/-1]
cypress-version: [10, 11, 12]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cypress-axe",
"version": "1.0.1",
"version": "1.2.0",
"license": "MIT",
"description": "Test accessibility with axe-core in Cypress",
"homepage": "https://github.com/component-driven/cypress-axe",
Expand Down Expand Up @@ -30,7 +30,7 @@
"dependencies": {},
"peerDependencies": {
"axe-core": "^3 || ^4",
"cypress": "^10 || ^11"
"cypress": "^10 || ^11 || ^12"
},
"devDependencies": {
"@types/node": "^14.14.8",
Expand Down Expand Up @@ -73,4 +73,4 @@
"*.js": "eslint --cache --fix",
"*.{js,md}": "prettier --write"
}
}
}

0 comments on commit 75cac7b

Please sign in to comment.