Skip to content

Commit

Permalink
ci: remove 14.x from ci
Browse files Browse the repository at this point in the history
  • Loading branch information
brettstack committed Dec 19, 2023
1 parent 4145357 commit 789e79b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-on-push-to-mainline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
node-version: [16.x, 18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -33,8 +33,8 @@ jobs:
- name: Test
run: npm test

- name: TS
run: npm run tsc
- name: Verify Typescript Types
run: npm run verify-typescript-types

- name: Lint
run: npm run lint
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
. "$(dirname -- "$0")/_/husky.sh"

npm test
npm run tsc
npm run verify-typescript-types
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
},
"scripts": {
"test": "jest",
"tsc": "tsc ./src/*.ts --outDir typescript-out",
"verify-typescript-types": "tsc ./src/*.ts --outDir typescript-out",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cz": "git-cz",
Expand All @@ -110,4 +110,4 @@
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
}
}
}

0 comments on commit 789e79b

Please sign in to comment.