-
Notifications
You must be signed in to change notification settings - Fork 25.2k
54 lines (50 loc) · 1.38 KB
/
Copy pathfantom-tests.yml
File metadata and controls
54 lines (50 loc) · 1.38 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Fantom Tests
permissions:
contents: read
on:
workflow_call:
inputs:
fail-on-error:
type: boolean
default: false
outputs:
status:
description: 'The result of the Fantom tests (success or failure)'
value: ${{ jobs.report.outputs.status }}
jobs:
test:
runs-on: ubuntu-latest
outputs:
status: ${{ steps.report-status.outputs.status }}
container:
image: reactnativecommunity/react-native-android:latest
env:
TERM: 'dumb'
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Run Fantom Tests
id: run-tests
continue-on-error: true
uses: ./.github/actions/run-fantom-tests
- name: Report status
id: report-status
if: ${{ always() && steps.run-tests.outcome == 'failure' }}
run: echo "status=failure" >> $GITHUB_OUTPUT
report:
needs: test
if: always()
runs-on: ubuntu-latest
outputs:
status: ${{ steps.check.outputs.status }}
steps:
- id: check
run: |
if [[ "${{ needs.test.outputs.status }}" == "failure" ]]; then
echo "status=failure" >> $GITHUB_OUTPUT
else
echo "status=success" >> $GITHUB_OUTPUT
fi
- name: Fail if needed
if: ${{ inputs.fail-on-error && steps.check.outputs.status == 'failure' }}
run: exit 1