25
25
BRANCH : ${{ github.base_ref || github.ref_name }}
26
26
27
27
jobs :
28
- init :
28
+ cypress :
29
29
runs-on : ubuntu-latest
30
- outputs :
31
- nodeVersion : ${{ steps.versions.outputs.nodeVersion }}
32
- npmVersion : ${{ steps.versions.outputs.npmVersion }}
30
+
31
+ strategy :
32
+ fail-fast : false
33
+ matrix :
34
+ # Run multiple copies of the current job in parallel
35
+ # Please increase the number or runners as your tests suite grows (0 based index for e2e tests)
36
+ containers : [0, 1, 2, 3, 4, 5, 6, 7]
37
+ # Hack as strategy.job-total includes the component and GitHub does not allow math expressions
38
+ # Always align this number with the total of e2e runners (max. index + 1)
39
+ total-containers : [8]
40
+
41
+ name : runner ${{ matrix.containers }}
33
42
34
43
env :
35
44
PUPPETEER_SKIP_DOWNLOAD : true
36
45
37
46
steps :
47
+ - name : Disabled on forks
48
+ if : ${{ github.event.pull_request.head.repo.full_name != github.repository }}
49
+ run : |
50
+ echo 'Can not approve PRs from forks'
51
+ exit 1
52
+
38
53
- name : Checkout app
39
54
uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
40
55
52
67
uses : skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3
53
68
id : versions
54
69
with :
55
- fallbackNode : " ^20"
56
- fallbackNpm : " ^10"
70
+ fallbackNode : ' ^20'
71
+ fallbackNpm : ' ^10'
57
72
58
73
- name : Set up node ${{ steps.versions.outputs.nodeVersion }}
59
74
uses : actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
@@ -65,66 +80,29 @@ jobs:
65
80
66
81
- name : Install node dependencies & build app
67
82
run : |
68
- npm ci
83
+ # We'll install cypress in the cypress job
84
+ CYPRESS_INSTALL_BINARY=0 npm ci
69
85
npm run build --if-present
70
86
71
- - name : Save context
72
- uses : buildjet/cache/save@e376f15c6ec6dc595375c78633174c7e5f92dc0e # v3
73
- with :
74
- key : cypress-context-${{ github.run_id }}
75
- path : ./
76
-
77
- cypress :
78
- runs-on : ubuntu-latest
79
- needs : init
80
-
81
- strategy :
82
- fail-fast : false
83
- matrix :
84
- # Run multiple copies of the current job in parallel
85
- # Please increase the number or runners as your tests suite grows (0 based index for e2e tests)
86
- containers : [0, 1, 2, 3, 4, 5, 6, 7]
87
- # Hack as strategy.job-total includes the component and GitHub does not allow math expressions
88
- # Always aling this number with the total of e2e runners (max. index + 1)
89
- total-containers : [8]
90
-
91
- name : runner ${{ matrix.containers }}
92
-
93
- steps :
94
- - name : Restore context
95
- uses : buildjet/cache/restore@e376f15c6ec6dc595375c78633174c7e5f92dc0e # v3
96
- with :
97
- fail-on-cache-miss : true
98
- key : cypress-context-${{ github.run_id }}
99
- path : ./
100
-
101
- - name : Set up node ${{ needs.init.outputs.nodeVersion }}
102
- uses : actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
103
- with :
104
- node-version : ${{ needs.init.outputs.nodeVersion }}
105
-
106
- - name : Set up npm ${{ needs.init.outputs.npmVersion }}
107
- run : npm i -g 'npm@${{ needs.init.outputs.npmVersion }}'
87
+ - name : Install cypress
88
+ run : ./node_modules/cypress/bin/cypress install
108
89
109
90
- name : Run ${{ matrix.containers == 'component' && 'component' || 'E2E' }} cypress tests
110
- uses : cypress-io/github-action@8d3918616d8ac34caa2b49afc8b408b6a872a6f5 # v6.7.1
91
+ uses : cypress-io/github-action@496e7dc0edc421a9de8a36a31c793340e00c61bf # v6.7.5
111
92
with :
112
- record : ${{ secrets.CYPRESS_RECORD_KEY && true }}
113
- parallel : ${{ secrets.CYPRESS_RECORD_KEY && true }}
93
+ # We already installed the dependencies in the init job
94
+ install : false
114
95
# cypress run type
115
96
component : ${{ matrix.containers == 'component' }}
116
- group : ${{ secrets.CYPRESS_RECORD_KEY && env.CYPRESS_GROUP }}
117
- # cypress env
118
- ci-build-id : ${{ secrets.CYPRESS_RECORD_KEY && env.CYPRESS_BUILD_ID }}
119
- tag : ${{ secrets.CYPRESS_RECORD_KEY && github.event_name }}
97
+ # Do not add Cypress record key config as this conflicts with cypress-split
98
+ # Cypress again tries to force users to buy there dashboard...
120
99
env :
121
100
# Needs to be prefixed with CYPRESS_
122
101
CYPRESS_BRANCH : ${{ env.BRANCH }}
123
102
# https://github.com/cypress-io/github-action/issues/124
124
103
COMMIT_INFO_MESSAGE : ${{ github.event.pull_request.title }}
125
104
# Needed for some specific code workarounds
126
105
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
127
- CYPRESS_RECORD_KEY : ${{ secrets.CYPRESS_RECORD_KEY }}
128
106
SPLIT : ${{ matrix.total-containers }}
129
107
SPLIT_INDEX : ${{ matrix.containers == 'component' && 0 || matrix.containers }}
130
108
@@ -137,7 +115,7 @@ jobs:
137
115
138
116
- name : Extract NC logs
139
117
if : failure() && matrix.containers != 'component'
140
- run : docker logs nextcloud-cypress-tests- ${{ env.APP_NAME }} > nextcloud.log
118
+ run : docker logs nextcloud-cypress-tests_ ${{ env.APP_NAME }} > nextcloud.log
141
119
142
120
- name : Upload NC logs
143
121
uses : actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
@@ -148,12 +126,12 @@ jobs:
148
126
149
127
summary :
150
128
runs-on : ubuntu-latest-low
151
- needs : [init, cypress]
129
+ needs : [cypress]
152
130
153
131
if : always()
154
132
155
133
name : cypress-summary
156
134
157
135
steps :
158
136
- name : Summary status
159
- run : if ${{ needs.init.result != 'success' || ( needs. cypress.result != 'success' && needs.cypress.result != 'skipped' ) }}; then exit 1; fi
137
+ run : if ${{ needs.cypress.result != 'success' && needs.cypress.result != 'skipped' }}; then exit 1; fi
0 commit comments