Skip to content

Commit

Permalink
chore: update devDeps.
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed May 4, 2023
1 parent 3ae412e commit aeaae4f
Show file tree
Hide file tree
Showing 5 changed files with 366 additions and 463 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ the error).
## Environment

- Node version: <!-- $ node -v -->
- ESLint version <!-- $ $(npm bin)/eslint -v -->
- ESLint version <!-- $ npx eslint -v -->
- `eslint-plugin-jsdoc` version:
21 changes: 15 additions & 6 deletions .github/workflows/feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ jobs:
runs-on: ubuntu-latest
name: Lint
steps:
- uses: pnpm/action-setup@v2
with:
version: latest
- name: setup repository
uses: actions/checkout@v3
with:
Expand All @@ -11,13 +14,16 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '20'
- run: npm ci
- run: npm run lint
- run: pnpm install
- run: pnpm lint
timeout-minutes: 10
test:
runs-on: ubuntu-latest
name: Test (Node.js ${{ matrix.node_js_version }})
steps:
- uses: pnpm/action-setup@v2
with:
version: latest
- name: setup repository
uses: actions/checkout@v3
with:
Expand All @@ -26,8 +32,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '${{ matrix.node_js_version }}'
- run: npm ci
- run: npm run test
- run: pnpm install
- run: pnpm test
timeout-minutes: 10
strategy:
fail-fast: false
Expand All @@ -40,6 +46,9 @@ jobs:
runs-on: ubuntu-latest
name: Build
steps:
- uses: pnpm/action-setup@v2
with:
version: latest
- name: setup repository
uses: actions/checkout@v3
with:
Expand All @@ -48,8 +57,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '20'
- run: npm ci
- run: npm run build
- run: pnpm install
- run: pnpm build
timeout-minutes: 10
name: Lint, test and build
on:
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
jobs:
install:
runs-on: ubuntu-latest

steps:
- uses: pnpm/action-setup@v2
with:
version: latest

release:
runs-on: ubuntu-latest
environment: release
Expand All @@ -12,8 +20,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: "20"
- run: npm ci
- run: npm run build
- run: pnpm install
- run: pnpm build
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@
"description": "JSDoc linting rules for ESLint.",
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.5",
"@babel/eslint-parser": "^7.21.3",
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/node": "^7.20.7",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-transform-flow-strip-types": "^7.21.0",
"@babel/preset-env": "^7.21.5",
"@babel/register": "^7.21.0",
"@es-joy/jsdoc-eslint-parser": "^0.17.0",
"@es-joy/jsdoc-eslint-parser": "^0.18.0",
"@hkdobrev/run-if-changed": "^0.3.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@typescript-eslint/parser": "^5.59.1",
"@typescript-eslint/parser": "^5.59.2",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.1.1",
"camelcase": "^6.3.0",
Expand Down
Loading

0 comments on commit aeaae4f

Please sign in to comment.