5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-01 22:42:37 +08:00

[ci] Better PR checks

This commit is contained in:
Lea Anthony 2025-02-28 07:32:29 +11:00
parent f56093ae27
commit 49ff9b62bf
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405

View File

@ -172,3 +172,17 @@ jobs:
wails3 init -n ${{ matrix.template }} -t ${{ matrix.template }}
cd ${{ matrix.template }}
wails3 build
results:
if: ${{ always() }}
runs-on: ubuntu-latest
name: v3 Build Results
needs: [test_go, test_js, test_templates]
steps:
- run: |
result="${{ needs.build.result }}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
exit 1
fi