Skip to content

Commit 84ef8c4

Browse files
authored
Merge pull request #4 from textlint-rule/maintenance/2025-12
chore: update dependencies
2 parents fafedae + 1648d78 commit 84ef8c4

File tree

4 files changed

+4194
-3568
lines changed

4 files changed

+4194
-3568
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,20 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [ 14, 16, 18 ]
11+
node-version: [ 22, 24 ]
1212
steps:
1313
- name: checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
15+
with:
16+
persist-credentials: false
17+
- name: Install pnpm
18+
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
1519
- name: setup Node.js ${{ matrix.node-version }}
16-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
1721
with:
18-
cache: "yarn"
22+
cache: "pnpm"
1923
node-version: ${{ matrix.node-version }}
2024
- name: Install
21-
run: yarn install
25+
run: pnpm install
2226
- name: Test
23-
run: yarn test
27+
run: pnpm test

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"build": "textlint-scripts build",
3030
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
3131
"prepare": "git config --local core.hooksPath .githooks",
32-
"prepublishOnly": "npm run build",
32+
"prepublishOnly": "pnpm run build",
3333
"test": "textlint-scripts test",
3434
"watch": "textlint-scripts build --watch"
3535
},
@@ -45,6 +45,7 @@
4545
"trailingComma": "none"
4646
},
4747
"devDependencies": {
48+
"@textlint/ast-node-types": "^13.3.2",
4849
"@textlint/types": "^13.3.2",
4950
"@types/node": "^18.15.10",
5051
"lint-staged": "^13.2.0",
@@ -60,5 +61,6 @@
6061
"dependencies": {
6162
"@textlint/regexp-string-matcher": "^2.0.2",
6263
"textlint-rule-helper": "^2.3.0"
63-
}
64+
},
65+
"packageManager": "[email protected]+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402"
6466
}

0 commit comments

Comments
 (0)