Skip to content

Commit 75cac7b

Browse files
authored
feat(cypress12): support Cypress 12 (#148)
* feat(cypress12): support Cypress 12 * Switch to node lts notation. Update package lock. * Shift lts versions. Update package lock.
1 parent b6391e6 commit 75cac7b

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/node.js.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [12.x, 14.x, 16.x]
19-
cypress-version: [10, 11]
18+
node-version: [lts/-2, lts/-1]
19+
cypress-version: [10, 11, 12]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v1
24+
uses: actions/setup-node@v3
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
- run: npm ci

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cypress-axe",
3-
"version": "1.0.1",
3+
"version": "1.2.0",
44
"license": "MIT",
55
"description": "Test accessibility with axe-core in Cypress",
66
"homepage": "https://github.com/component-driven/cypress-axe",
@@ -30,7 +30,7 @@
3030
"dependencies": {},
3131
"peerDependencies": {
3232
"axe-core": "^3 || ^4",
33-
"cypress": "^10 || ^11"
33+
"cypress": "^10 || ^11 || ^12"
3434
},
3535
"devDependencies": {
3636
"@types/node": "^14.14.8",
@@ -73,4 +73,4 @@
7373
"*.js": "eslint --cache --fix",
7474
"*.{js,md}": "prettier --write"
7575
}
76-
}
76+
}

0 commit comments

Comments
 (0)