Skip to content

Commit

Permalink
Merge 1a40f39 into 8a6dab8
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jul 22, 2023
2 parents 8a6dab8 + 1a40f39 commit 3f9c000
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/NodeCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -49,7 +49,26 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install eslint v7
run: |+
npm i -D eslint@7 --legacy-peer-deps
npm i -D eslint@7 @typescript-eslint/parser@5 --legacy-peer-deps
npx rimraf node_modules
- name: Install Packages
run: npm install --legacy-peer-deps
- name: Test
run: npm test
test-for-node-v14:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install @typescript-eslint/parser v5
run: |+
npm i -D @typescript-eslint/parser@5 --legacy-peer-deps
npx rimraf node_modules
- name: Install Packages
run: npm install --legacy-peer-deps
Expand Down
1 change: 0 additions & 1 deletion docs-build/build-system/src/eslint-plugin-jsx-a11y.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/* eslint require-jsdoc:0 -- shim */

// eslint-disable-next-line n/no-missing-import -- Ignore
import * as all from "../../../node_modules/eslint-plugin-jsx-a11y"
export const rules = all.rules
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
"@types/react": "^18.0.15",
"@types/semver": "^7.3.9",
"@types/stylus": "^0.48.38",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"assert": "^2.0.0",
"astro": "^2.0.0",
"env-cmd": "^10.1.0",
Expand Down

0 comments on commit 3f9c000

Please sign in to comment.