We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1de0c2e commit 0c3aa68Copy full SHA for 0c3aa68
.github/workflows/ci.yml
@@ -46,3 +46,7 @@ jobs:
46
- run: pnpm test
47
env:
48
GITHUB_API_URL: ""
49
+ - run: git fetch --all && git fetch --unshallow
50
+ - run: node ./bin/cli.js --from=ee1c697fcf871114c53e9847c43e221d3056f19d --to=b20002d9760e9e212bc623c8f3f42931ddc01bda
51
+ env:
52
+ GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
package.json
@@ -25,7 +25,9 @@
25
"changelog": "node ./bin/cli.js",
26
"clean": "rimraf lib",
27
"fix": "pnpm lint --fix",
28
- "lint": "eslint src --ext ts --format stylish",
+ "lint": "pnpm run '/lint:.*/'",
29
+ "lint:js": "eslint src --ext ts --format stylish",
30
+ "lint:types": "tsc --noEmit",
31
"prepack": "pnpm build",
32
"prettier": "prettier --write 'src/**/*.ts'",
33
"test": "vitest",
0 commit comments