Skip to content

Commit 91fee12

Browse files
committed
test build
1 parent 1de0c2e commit 91fee12

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/ci.yml

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
cache: pnpm
2222
- run: pnpm install
2323
- run: pnpm lint
24+
- run: pnpm lint:types
2425

2526
tests:
2627
name: "Tests on Node.js ${{ matrix.node-version }} - ${{ matrix.os }}"
@@ -46,3 +47,7 @@ jobs:
4647
- run: pnpm test
4748
env:
4849
GITHUB_API_URL: ""
50+
- run: git fetch --all && git fetch --unshallow
51+
- run: node ./bin/cli.js --from=ee1c697fcf871114c53e9847c43e221d3056f19d --to=b20002d9760e9e212bc623c8f3f42931ddc01bda
52+
env:
53+
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
"changelog": "node ./bin/cli.js",
2626
"clean": "rimraf lib",
2727
"fix": "pnpm lint --fix",
28-
"lint": "eslint src --ext ts --format stylish",
28+
"lint": "pnpm run '/lint:.*/'",
29+
"lint:js": "eslint src --ext ts --format stylish",
30+
"lint:types": "tsc --noEmit",
2931
"prepack": "pnpm build",
3032
"prettier": "prettier --write 'src/**/*.ts'",
3133
"test": "vitest",

0 commit comments

Comments
 (0)