Skip to content

Commit 66ff41f

Browse files
printminion-cobromiesTM
authored andcommitted
Merge v30.0.5 into v30.0.0
File actions moved from Viewer.vue to files_actions/viewerAction.ts
2 parents 4021734 + 91f18e7 commit 66ff41f

File tree

252 files changed

+8326
-86699
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

252 files changed

+8326
-86699
lines changed

.github/workflows/cypress.yml

+33-55
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,31 @@ env:
2525
BRANCH: ${{ github.base_ref || github.ref_name }}
2626

2727
jobs:
28-
init:
28+
cypress:
2929
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 }}
3342

3443
env:
3544
PUPPETEER_SKIP_DOWNLOAD: true
3645

3746
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+
3853
- name: Checkout app
3954
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4055

@@ -52,8 +67,8 @@ jobs:
5267
uses: skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3
5368
id: versions
5469
with:
55-
fallbackNode: "^20"
56-
fallbackNpm: "^10"
70+
fallbackNode: '^20'
71+
fallbackNpm: '^10'
5772

5873
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
5974
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
@@ -65,66 +80,29 @@ jobs:
6580

6681
- name: Install node dependencies & build app
6782
run: |
68-
npm ci
83+
# We'll install cypress in the cypress job
84+
CYPRESS_INSTALL_BINARY=0 npm ci
6985
npm run build --if-present
7086
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
10889

10990
- 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
11192
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
11495
# cypress run type
11596
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...
12099
env:
121100
# Needs to be prefixed with CYPRESS_
122101
CYPRESS_BRANCH: ${{ env.BRANCH }}
123102
# https://github.com/cypress-io/github-action/issues/124
124103
COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }}
125104
# Needed for some specific code workarounds
126105
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
127-
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
128106
SPLIT: ${{ matrix.total-containers }}
129107
SPLIT_INDEX: ${{ matrix.containers == 'component' && 0 || matrix.containers }}
130108

@@ -137,7 +115,7 @@ jobs:
137115

138116
- name: Extract NC logs
139117
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
141119

142120
- name: Upload NC logs
143121
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
@@ -148,12 +126,12 @@ jobs:
148126

149127
summary:
150128
runs-on: ubuntu-latest-low
151-
needs: [init, cypress]
129+
needs: [cypress]
152130

153131
if: always()
154132

155133
name: cypress-summary
156134

157135
steps:
158136
- 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

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"optimize-autoloader": true,
55
"classmap-authoritative": true,
66
"platform": {
7-
"php": "8.0"
7+
"php": "8.1"
88
}
99
},
1010
"scripts": {
@@ -17,9 +17,9 @@
1717
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType"
1818
},
1919
"require-dev": {
20-
"nextcloud/coding-standard": "^1.0.0",
20+
"nextcloud/coding-standard": "^1.2.1",
2121
"phpunit/phpunit": "^9",
2222
"vimeo/psalm": "^5.15.0",
23-
"nextcloud/ocp": "dev-master"
23+
"nextcloud/ocp": "dev-stable30"
2424
}
2525
}

0 commit comments

Comments
 (0)