forked from redhat-developer/vscode-extension-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 928 Bytes
/
runner.yaml
File metadata and controls
38 lines (34 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: 🏗️ Runner CI
on:
pull_request:
branches: [main]
paths:
- packages/extester-runner/**
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
runner:
uses: ./.github/workflows/template-runner.yaml
with:
version: max
check:
if: always()
runs-on: ubuntu-latest
name: 🚦 Status Check
needs: [runner]
steps:
- name: ℹ️ Test Matrix Result
run: |
echo Runner Test result = ${{ needs.runner.result }}
- name: ✅ Status Check - success
if: ${{ needs.runner.result == 'success' }}
run: |
echo "All tests successfully completed!"
exit 0
- name: ❌ Status Check - failure
if: ${{ needs.runner.result != 'success' }}
run: |
echo "Status Check failed!"
exit 1