Skip to content

Commit

Permalink
Merge branch 'main' into simplify-getScope
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi authored Oct 25, 2024
2 parents 872296b + fd0f085 commit dab9e27
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 14 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: write # to be able to publish a GitHub release
id-token: write # to enable use of OIDC for npm provenance
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests

jobs:
lint:
name: ⬣ Lint
Expand All @@ -28,7 +34,7 @@ jobs:
- name: ⎔ Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: 📥 Install dependencies
run: npm install
Expand All @@ -43,22 +49,22 @@ jobs:
strategy:
matrix:
eslint: [8]
node: [12.22.0, 12, 14.17.0, 14, 16, 18, 20]
node: [12.22.0, 12, 14.17.0, 14, 16, 18, 20, 22]
os: [ubuntu-latest]
include:
# On other platforms
- os: windows-latest
eslint: 8
node: 18
node: 20
- os: macos-latest
eslint: 8
node: 18
node: 20
# On old ESLint versions
- eslint: 7
node: 18
node: 20
os: ubuntu-latest
- eslint: 6
node: 18
node: 20
os: ubuntu-latest
# On the minimum supported ESLint/Node.js version
- eslint: 6.0.0
Expand Down Expand Up @@ -103,7 +109,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: 📥 Install dependencies
run: npm install
Expand All @@ -126,4 +132,5 @@ jobs:
]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_PROVENANCE: true
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,22 @@
"eslint-visitor-keys": "^3.4.3"
},
"devDependencies": {
"@eslint-community/eslint-plugin-mysticatea": "^15.5.1",
"@eslint-community/eslint-plugin-mysticatea": "^15.6.1",
"@types/eslint": "^8.56.12",
"c8": "^8.0.1",
"dot-prop": "^7.2.0",
"eslint": "^8.50.0",
"eslint": "^8.57.1",
"installed-check": "^8.0.1",
"knip": "^5.0.3",
"knip": "^5.33.3",
"mocha": "^9.2.2",
"npm-run-all2": "^6.1.2",
"npm-run-all2": "^6.2.3",
"opener": "^1.5.2",
"prettier": "2.8.8",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup": "^2.79.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"semver": "^7.5.4",
"vitepress": "^1.0.0-rc.20",
"semver": "^7.6.3",
"vitepress": "^1.4.1",
"warun": "^1.0.0"
},
"peerDependencies": {
Expand Down

0 comments on commit dab9e27

Please sign in to comment.