mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 02:21:49 +03:00
ci: improve build.yml output
This commit is contained in:
parent
d13174cedf
commit
5a7a59afea
20
.github/workflows/build.yml
vendored
20
.github/workflows/build.yml
vendored
@ -11,6 +11,7 @@ jobs:
|
|||||||
pull_request:
|
pull_request:
|
||||||
name: Get Pull Request SHA
|
name: Get Pull Request SHA
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.repository == 'toeverything/AFFiNE' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/test run')
|
||||||
outputs:
|
outputs:
|
||||||
pr_sha: ${{ steps.get-pr.outputs.result }}
|
pr_sha: ${{ steps.get-pr.outputs.result }}
|
||||||
steps:
|
steps:
|
||||||
@ -29,7 +30,6 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
name: Build on Pull Request
|
name: Build on Pull Request
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.repository == 'toeverything/AFFiNE' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/test run')
|
|
||||||
environment: development
|
environment: development
|
||||||
needs: [pull_request]
|
needs: [pull_request]
|
||||||
|
|
||||||
@ -79,7 +79,11 @@ jobs:
|
|||||||
head_sha: "${{ needs.pull_request.outputs.pr_sha }}",
|
head_sha: "${{ needs.pull_request.outputs.pr_sha }}",
|
||||||
name: "Build on Pull Request",
|
name: "Build on Pull Request",
|
||||||
status: "in_progress",
|
status: "in_progress",
|
||||||
details_url: process.env.BUILD_URL
|
details_url: ${{ env.BUILD_URL }},
|
||||||
|
output: {
|
||||||
|
title: "Build on Pull Request",
|
||||||
|
summary: "Please check the build result ${{ env.BUILD_URL }}",
|
||||||
|
},
|
||||||
});
|
});
|
||||||
return check.id;
|
return check.id;
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
@ -199,7 +203,11 @@ jobs:
|
|||||||
head_sha: "${{ needs.pull_request.outputs.pr_sha }}",
|
head_sha: "${{ needs.pull_request.outputs.pr_sha }}",
|
||||||
name: "E2E Test (${{ matrix.shard }}/${{ strategy.job-total }})",
|
name: "E2E Test (${{ matrix.shard }}/${{ strategy.job-total }})",
|
||||||
status: "in_progress",
|
status: "in_progress",
|
||||||
details_url: process.env.BUILD_URL
|
details_url: ${{ env.BUILD_URL }},
|
||||||
|
output: {
|
||||||
|
title: "E2E Test (${{ matrix.shard }}/${{ strategy.job-total }})",
|
||||||
|
summary: "Please check the e2e test result ${{ env.BUILD_URL }}",
|
||||||
|
},
|
||||||
});
|
});
|
||||||
return check.id;
|
return check.id;
|
||||||
- name: Use Node.js 18
|
- name: Use Node.js 18
|
||||||
@ -306,7 +314,11 @@ jobs:
|
|||||||
head_sha: "${{ needs.pull_request.outputs.pr_sha }}",
|
head_sha: "${{ needs.pull_request.outputs.pr_sha }}",
|
||||||
name: "Unit Test",
|
name: "Unit Test",
|
||||||
status: "in_progress",
|
status: "in_progress",
|
||||||
details_url: process.env.BUILD_URL
|
details_url: ${{ env.BUILD_URL }},
|
||||||
|
output: {
|
||||||
|
title: "Unit Test",
|
||||||
|
summary: "Please check the unit test result ${{ env.BUILD_URL }}",
|
||||||
|
},
|
||||||
});
|
});
|
||||||
return check.id;
|
return check.id;
|
||||||
- name: Use Node.js LTS
|
- name: Use Node.js LTS
|
||||||
|
Loading…
Reference in New Issue
Block a user