Skip to content

Commit aeaae4f

Browse files
committed
chore: update devDeps.
1 parent 3ae412e commit aeaae4f

File tree

5 files changed

+366
-463
lines changed

5 files changed

+366
-463
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,5 @@ the error).
7070
## Environment
7171

7272
- Node version: <!-- $ node -v -->
73-
- ESLint version <!-- $ $(npm bin)/eslint -v -->
73+
- ESLint version <!-- $ npx eslint -v -->
7474
- `eslint-plugin-jsdoc` version:

.github/workflows/feature.yaml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ jobs:
33
runs-on: ubuntu-latest
44
name: Lint
55
steps:
6+
- uses: pnpm/action-setup@v2
7+
with:
8+
version: latest
69
- name: setup repository
710
uses: actions/checkout@v3
811
with:
@@ -11,13 +14,16 @@ jobs:
1114
uses: actions/setup-node@v3
1215
with:
1316
node-version: '20'
14-
- run: npm ci
15-
- run: npm run lint
17+
- run: pnpm install
18+
- run: pnpm lint
1619
timeout-minutes: 10
1720
test:
1821
runs-on: ubuntu-latest
1922
name: Test (Node.js ${{ matrix.node_js_version }})
2023
steps:
24+
- uses: pnpm/action-setup@v2
25+
with:
26+
version: latest
2127
- name: setup repository
2228
uses: actions/checkout@v3
2329
with:
@@ -26,8 +32,8 @@ jobs:
2632
uses: actions/setup-node@v3
2733
with:
2834
node-version: '${{ matrix.node_js_version }}'
29-
- run: npm ci
30-
- run: npm run test
35+
- run: pnpm install
36+
- run: pnpm test
3137
timeout-minutes: 10
3238
strategy:
3339
fail-fast: false
@@ -40,6 +46,9 @@ jobs:
4046
runs-on: ubuntu-latest
4147
name: Build
4248
steps:
49+
- uses: pnpm/action-setup@v2
50+
with:
51+
version: latest
4352
- name: setup repository
4453
uses: actions/checkout@v3
4554
with:
@@ -48,8 +57,8 @@ jobs:
4857
uses: actions/setup-node@v3
4958
with:
5059
node-version: '20'
51-
- run: npm ci
52-
- run: npm run build
60+
- run: pnpm install
61+
- run: pnpm build
5362
timeout-minutes: 10
5463
name: Lint, test and build
5564
on:

.github/workflows/main.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
jobs:
2+
install:
3+
runs-on: ubuntu-latest
4+
5+
steps:
6+
- uses: pnpm/action-setup@v2
7+
with:
8+
version: latest
9+
210
release:
311
runs-on: ubuntu-latest
412
environment: release
@@ -12,8 +20,8 @@ jobs:
1220
uses: actions/setup-node@v3
1321
with:
1422
node-version: "20"
15-
- run: npm ci
16-
- run: npm run build
23+
- run: pnpm install
24+
- run: pnpm build
1725
- run: npx semantic-release
1826
env:
1927
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
"description": "JSDoc linting rules for ESLint.",
1818
"devDependencies": {
1919
"@babel/cli": "^7.21.5",
20-
"@babel/core": "^7.21.5",
21-
"@babel/eslint-parser": "^7.21.3",
20+
"@babel/core": "^7.21.8",
21+
"@babel/eslint-parser": "^7.21.8",
2222
"@babel/node": "^7.20.7",
2323
"@babel/plugin-syntax-class-properties": "^7.12.13",
2424
"@babel/plugin-transform-flow-strip-types": "^7.21.0",
2525
"@babel/preset-env": "^7.21.5",
2626
"@babel/register": "^7.21.0",
27-
"@es-joy/jsdoc-eslint-parser": "^0.17.0",
27+
"@es-joy/jsdoc-eslint-parser": "^0.18.0",
2828
"@hkdobrev/run-if-changed": "^0.3.1",
2929
"@semantic-release/commit-analyzer": "^9.0.2",
3030
"@semantic-release/github": "^8.0.7",
3131
"@semantic-release/npm": "^10.0.3",
32-
"@typescript-eslint/parser": "^5.59.1",
32+
"@typescript-eslint/parser": "^5.59.2",
3333
"babel-plugin-add-module-exports": "^1.0.4",
3434
"babel-plugin-istanbul": "^6.1.1",
3535
"camelcase": "^6.3.0",

0 commit comments

Comments
 (0)