We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4768e5f commit 04fcc02Copy full SHA for 04fcc02
.github/workflows/pull-request.yml
@@ -41,8 +41,8 @@ jobs:
41
PR_COMMITS: ${{ github.event.pull_request.commits }}
42
run: |
43
npm run lint:commit -- \
44
- --from ${{ PR_HEAD }}~${{ PR_COMMITS }} \
45
- --to ${{ PR_HEAD }} --verbose
+ --from ${{ env.PR_HEAD }}~${{ env.PR_COMMITS }} \
+ --to ${{ env.PR_HEAD }} --verbose
46
47
- name: Lint files
48
run: npm run lint
.husky/prepare-commit-msg
@@ -1,3 +1,3 @@
1
#!/bin/sh
2
3
-exec < /dev/tty && npm run commit --hook || true
+exec < /dev/tty && npm run commit -- --hook || true
0 commit comments