Aggregate test results in one job (#16)

This commit is contained in:
Han Qiao
2022-08-09 08:50:26 +08:00
committed by GitHub
parent 234d31220e
commit 0c7fa44ae1

View File

@@ -29,3 +29,11 @@ jobs:
with:
version: ${{ matrix.version }}
- run: supabase -h
check:
if: ${{ always() && github.event.pull_request }}
runs-on: ubuntu-latest
needs: [test]
steps:
- run: |
result="${{ needs.test.result }}"
[[ $result == "success" || $result == "skipped" ]]