Skip to content
Merged
11 changes: 7 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,21 @@ name: Run CI

on:
push:
branches: master
tags: v*
branches:
- master
tags:
- v*
pull_request:
branches: "*"
branches:
- "*"

jobs:
all:
name: "Run CI"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x, 24.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 22.x
registry-url: https://registry.npmjs.org
cache: yarn

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.12.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cross-env": "^7.0.3",
Expand All @@ -35,10 +35,10 @@
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^30.0.0",
"lint-staged": "^15.2.2",
"lint-staged": "^16.0.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"rimraf": "^5.0.5",
"prettier-plugin-organize-imports": "^4.0.0",
"rimraf": "^6.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
Expand All @@ -49,6 +49,6 @@
]
},
"engines": {
"node": ">= 18"
"node": ">= 20"
}
}
Loading