forked from JeremyHeleine/Photo-Sphere-Viewer
-
-
Notifications
You must be signed in to change notification settings - Fork 693
141 lines (112 loc) · 3.48 KB
/
build.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
name: build
on:
push:
branches:
- '*'
paths-ignore:
- 'examples/**'
pull_request:
branches:
- main
paths-ignore:
- 'examples/**'
workflow_dispatch: {}
jobs:
changes:
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
build: ${{ steps.filter.outputs.build }}
src: ${{ steps.filter.outputs.src }}
e2e: ${{ steps.filter.outputs.e2e }}
docs: ${{ steps.filter.outputs.docs }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: dorny/paths-filter@v3
id: filter
with:
base: ${{ github.ref }}
filters: |
build:
- '*'
- 'build/**'
src:
- 'packages/**'
e2e:
- 'cypress/**'
docs:
- 'docs/**'
build:
needs: changes
if: ${{ needs.changes.outputs.build == 'true' || needs.changes.outputs.src == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup
uses: ./.github/workflows/shared/setup
- name: build
run: yarn ci:build
- name: test summary
uses: phoenix-actions/test-reporting@v15
if: ${{ !cancelled() }}
with:
name: build
output-to: step-summary
path: 'packages/*/reports/mocha.json,build/reports/mocha.json'
reporter: mocha-json
e2e:
needs: [changes, build]
if: ${{ always() && !contains(needs.*.result, 'failure') && !startsWith(github.head_ref, 'dependabot') && (needs.changes.outputs.build == 'true' || needs.changes.outputs.e2e == 'true') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup
uses: ./.github/workflows/shared/setup
with:
cache-readonly: 'true'
turbo-cache: 'false'
- name: e2e
run: yarn ci:e2e
- name: test summary
uses: phoenix-actions/test-reporting@v15
if: ${{ !cancelled() }}
with:
name: e2e
output-to: step-summary
path: 'cypress/reports/html/.jsons/*.json'
reporter: mochawesome-json
- name: coverage summary
run: node ./build/generate-coverage-summary.mjs >> $GITHUB_STEP_SUMMARY
- name: report artifact
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: e2e-report-${{ env.REF_NAME_SLUG }}-${{ env.SHORT_SHA }}
path: |
cypress/reports/html
!cypress/reports/html/.jsons
- name: deploy report
uses: ./.github/workflows/shared/deploy-netlify
if: ${{ !cancelled() && github.repository == 'mistic100/Photo-Sphere-Viewer' && github.ref_name == 'main' }}
with:
env: cypress
root-folder: cypress/reports/html
excludes: .jsons
auth-token: ${{ secrets.NETLIFY_AUTH_TOKEN }}
site-id: ${{ secrets.NETLIFY_REPORTS_SITE_ID }}
docs:
needs: [changes, build]
if: ${{ always() && !contains(needs.*.result, 'failure') && !startsWith(github.head_ref, 'dependabot') && (needs.changes.outputs.build == 'true' || needs.changes.outputs.docs == 'true') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup
uses: ./.github/workflows/shared/setup
with:
cache-readonly: 'true'
turbo-cache: 'false'
- name: build
run: yarn doc:build