Update pr-checker.yml
parent
1287131021
commit
73a6e0faf3
|
@ -42,10 +42,10 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
pnpm run format:check
|
pnpm run format:check
|
||||||
|
|
||||||
# - name: Unit Test
|
- name: Unit Test
|
||||||
# id: unitTest
|
id: unitTest
|
||||||
# run: |
|
run: |
|
||||||
# pnpm run test:unit
|
pnpm run test:unit
|
||||||
|
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: |
|
run: |
|
||||||
|
@ -62,12 +62,12 @@ jobs:
|
||||||
message: |
|
message: |
|
||||||
Thanks a lot for your contribution! But, PR does not seem to fit our code format standards. Please run the 'npm run format' command and commit the changes.
|
Thanks a lot for your contribution! But, PR does not seem to fit our code format standards. Please run the 'npm run format' command and commit the changes.
|
||||||
|
|
||||||
# - name: Add Unit Test Fail Comment
|
- name: Add Unit Test Fail Comment
|
||||||
# if: always() && steps.unitTest.outcome == 'failure'
|
if: always() && steps.unitTest.outcome == 'failure'
|
||||||
# uses: thollander/actions-comment-pull-request@v1
|
uses: thollander/actions-comment-pull-request@v1
|
||||||
# with:
|
with:
|
||||||
# message: |
|
message: |
|
||||||
# Thanks a lot for your contribution! But, Unit tests failed. You can check the unit tests with the command 'npm run test:unit' and commit the changes.
|
Thanks a lot for your contribution! But, Unit tests failed. You can check the unit tests with the command 'npm run test:unit' and commit the changes.
|
||||||
|
|
||||||
- name: Add Label
|
- name: Add Label
|
||||||
if: ${{ failure() }}
|
if: ${{ failure() }}
|
||||||
|
|
Loading…
Reference in New Issue