File tree 2 files changed +10
-9
lines changed
2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ jobs:
16
16
steps :
17
17
- name : Checkout Repo
18
18
uses : actions/checkout@v4
19
-
20
- - name : Setup
21
- id : config
22
- uses : ./.github/actions/init
23
19
with :
24
- turbo-signature : ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
25
- turbo-team : ${{ vars.TURBO_TEAM }}
26
- turbo-token : ${{ secrets.TURBO_TOKEN }}
27
- playwright-enabled : true # Must be present to enable caching on branched workflows
20
+ show-progress : false
21
+ sparse-checkout : |
22
+ commitlint.config.ts
23
+ packages/*/package.json
24
+ sparse-checkout-cone-mode : false
28
25
29
26
- name : Lint Pull Request Title
30
- run : echo "${{ github.event.pull_request.title }}" | npx commitlint
27
+ run : |
28
+ npm init --scope=clerk --yes
29
+ npm i --save-dev @commitlint/config-conventional @commitlint/cli globby --audit=false --fund=false
30
+ echo "${{ github.event.pull_request.title }}" | npm exec @commitlint/cli -- --config commitlint.config.ts
Original file line number Diff line number Diff line change
1
+ // All imports must be accounted for per `npm i` in .github/workflows/pr-title-linter.yml
1
2
import { globbySync } from 'globby' ;
2
3
import { readFileSync } from 'node:fs' ;
3
4
You can’t perform that action at this time.
0 commit comments