@@ -17,13 +17,13 @@ concurrency:
1717 cancel-in-progress : true
1818
1919# This workflow contains core CI jobs that run on push/pull_request events.
20- # For additional jobs, create separate workflow_call files (e.g., call -*.yml)
21- # and invoke them from this workflow. See .github/workflows/call -dependency-review.yml for reference.
20+ # For additional jobs, create separate workflow_call files (e.g., wc -*.yml)
21+ # and invoke them from this workflow. See .github/workflows/wc -dependency-review.yml for reference.
2222jobs :
2323 setup :
2424 name : Setup
2525 runs-on : ubuntu-latest
26- timeout-minutes : 5
26+ timeout-minutes : 2
2727 permissions :
2828 pull-requests : read
2929 if : ${{ !github.event.pull_request.draft }}
@@ -53,23 +53,23 @@ jobs:
5353
5454 lint-format :
5555 needs : [setup]
56- uses : ./.github/workflows/call -lint-format.yml
56+ uses : ./.github/workflows/wc -lint-format.yml
5757
5858 type-check :
5959 needs : [setup]
6060 if : ${{ needs.setup.outputs.typescript == 'true' }}
61- uses : ./.github/workflows/call -type-check.yml
61+ uses : ./.github/workflows/wc -type-check.yml
6262
6363 test :
6464 needs : [setup]
65- uses : ./.github/workflows/call -test.yml
65+ uses : ./.github/workflows/wc -test.yml
6666 secrets :
6767 CODECOV_TOKEN : " ${{ secrets.CODECOV_TOKEN }}"
6868
6969 export-validation :
7070 needs : [setup, lint-format, type-check, test]
7171 if : always() && !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled')
72- uses : ./.github/workflows/call -export-validation.yml
72+ uses : ./.github/workflows/wc -export-validation.yml
7373
7474 status-check :
7575 name : Status Check
0 commit comments