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: 10 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,15 @@
"env": {
"node": true,
"jest": true
},
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
}
4 changes: 2 additions & 2 deletions .github/workflows/master-push-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [22.x]
node-version: [24.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -24,7 +24,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- run: npm ci --no-optional
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run build
4 changes: 2 additions & 2 deletions .github/workflows/release-published.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [22.x]
node-version: [24.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -27,7 +27,7 @@ jobs:
- run: git config --global user.name "GitHub CD bot"
- run: git config --global user.email "github-cd-bot@j2inn.com"

- run: npm ci --no-optional
- run: npm ci

# Version the module using the release tag name
- run: npm version ${{ github.event.release.tag_name }}
Expand Down
Loading
Loading