-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (58 loc) · 1.59 KB
/
test-json-data-extraction.yml
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: 'JSON e2e test'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- master
- 'releases/*'
jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: './'
- uses: actions/upload-artifact@v3
with:
name: output.json
path: "./__tests__/output.json"
- uses: ./
name: run test
with:
jsonArtifact: "./__tests__/ouput.json"
download:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
with:
path: './'
- uses: actions/download-artifact@v3
with:
name: output.json
path: "./"
- uses: ./
name: run test
with:
jsonArtifact: '/home/runner/work/cypress-test-summary/cypress-test-summary/ouput.json'
# - run: |
# echo 'OUTPUT<<EOF' >> $GITHUB_ENV
# echo ./__tests__/output.json >> $GITHUB_ENV
# echo 'EOF' >> $GITHUB_ENV
# - run: |
# # echo 'OUTPUT2<<EOF' >> $GITHUB_ENV
# "OUTPUT2=$(jq @json <<< cat ./__tests__/output.json)" >> $GITHUB_ENV
# # echo 'EOF' >> $GITHUB_ENV
# - name: show output
# run: echo ${{env.OUTPUT2}}
# - id: test_result
# if: always()
# name: "Run Test on the output.json"
# uses: ./
# with: echo $(jq @json <<< echo ${{fromJson(env.OUTPUT)}})
# - id: test_result2
# if: always()
# name: "Run Test on the output.json"
# uses: ./
# with: ${{env.OUTPUT2}}