Skip to content

Commit 789e79b

Browse files
committed
ci: remove 14.x from ci
1 parent 4145357 commit 789e79b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/release-on-push-to-mainline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
node-version: [14.x, 16.x, 18.x, 20.x]
17+
node-version: [16.x, 18.x, 20.x]
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4
@@ -33,8 +33,8 @@ jobs:
3333
- name: Test
3434
run: npm test
3535

36-
- name: TS
37-
run: npm run tsc
36+
- name: Verify Typescript Types
37+
run: npm run verify-typescript-types
3838

3939
- name: Lint
4040
run: npm run lint

.husky/pre-push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
. "$(dirname -- "$0")/_/husky.sh"
33

44
npm test
5-
npm run tsc
5+
npm run verify-typescript-types

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
},
9595
"scripts": {
9696
"test": "jest",
97-
"tsc": "tsc ./src/*.ts --outDir typescript-out",
97+
"verify-typescript-types": "tsc ./src/*.ts --outDir typescript-out",
9898
"test:watch": "jest --watch",
9999
"test:coverage": "jest --coverage",
100100
"cz": "git-cz",
@@ -110,4 +110,4 @@
110110
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
111111
}
112112
}
113-
}
113+
}

0 commit comments

Comments
 (0)