Skip to content

Commit 2ea917e

Browse files
committed
create check run
1 parent c14de62 commit 2ea917e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/pr-test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,13 @@ jobs:
5858
continue-on-error: true
5959
run: |
6060
set +e # Don't exit on error
61-
pnpm test ${{ steps.get-target-branch.outputs.target_branch }} ${{ github.event.pull_request.head.ref }} 2>&1 | tee test_output.txt
61+
pnpm test --passWithNoTests ${{ steps.get-target-branch.outputs.target_branch }} ${{ github.event.pull_request.head.ref }} 2>&1 | tee test_output.txt
6262
TEST_EXIT_CODE=${PIPESTATUS[0]}
6363
64-
# Prepare the output
6564
echo "output<<EOF" >> $GITHUB_OUTPUT
6665
cat test_output.txt >> $GITHUB_OUTPUT
6766
echo "EOF" >> $GITHUB_OUTPUT
6867
69-
# Set the status based on exit code
7068
if [ $TEST_EXIT_CODE -eq 0 ]; then
7169
echo "status=success" >> $GITHUB_OUTPUT
7270
else

0 commit comments

Comments
 (0)