Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,13 @@ on:
branches: [main]
pull_request:
branches: [main]
# workflow_call:
# secrets:
# CODECOV_TOKEN:
# required: true

jobs:
build:

strategy:
matrix:
node-version: [18.x, 20.x, 22.x, 23.x]
node-version: [20, 22, 23]
platform: [ubuntu-latest]

runs-on: ${{ matrix.platform }}
Expand All @@ -26,7 +22,7 @@ jobs:
with:
submodules: true
- name: Install pnpm
run: corepack enable
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand All @@ -39,6 +35,6 @@ jobs:

# No coverage stats for generated files.
# - name: Upload coverage reports to Codecov
# uses: codecov/codecov-action@v4
# uses: codecov/codecov-action@v5
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
id-token: write
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
node-version: 22
registry-url: 'https://registry.npmjs.org'
cache: pnpm
- run: pnpm i -r
Expand Down
29 changes: 13 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,24 +58,21 @@
"build": "npm run test && npm run lint && npm pack --dry-run"
},
"devDependencies": {
"@cto.af/eslint-config": "5.0.5",
"@peggyjs/coverage": "1.3.2",
"abnf": "4.2.0",
"c8": "10.1.2",
"eslint-plugin-jsdoc": "50.6.0",
"@cto.af/eslint-config": "6.0.2",
"@eslint/markdown": "6.4.0",
"@peggyjs/coverage": "2.0.1",
"abnf": "5.0.0",
"c8": "10.1.3",
"eslint": "9.26.0",
"eslint-plugin-jsdoc": "50.6.11",
"eslint-plugin-markdown": "5.1.0",
"peggy": "4.2.0",
"terser": "5.36.0",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0"
},
"packageManager": "pnpm@9.14.4",
"pnpm": {
"overrides": {
"@eslint/plugin-kit": "^0.2.3"
}
"peggy": "5.0.2",
"terser": "5.39.0",
"typescript": "5.8.3",
"typescript-eslint": "8.32.0"
},
"packageManager": "pnpm@10.10.0",
"engines": {
"node": ">=18.8"
"node": ">=20"
}
}
Loading