forked from matrix-org/matrix-react-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
2,221 changed files
with
280,795 additions
and
177,455 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,6 @@ trim_trailing_whitespace = true | |
|
||
[*.{yml,yaml}] | ||
indent_size = 4 | ||
|
||
[*.tsx.snap] | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,17 @@ | ||
* @matrix-org/element-web | ||
/.github/workflows/** @matrix-org/element-web-app-team | ||
/package.json @matrix-org/element-web-app-team | ||
/yarn.lock @matrix-org/element-web-app-team | ||
* @matrix-org/element-web-reviewers | ||
/.github/workflows/** @matrix-org/element-web-team | ||
/package.json @matrix-org/element-web-team | ||
/yarn.lock @matrix-org/element-web-team | ||
|
||
/src/SecurityManager.ts @matrix-org/element-crypto-web-reviewers | ||
/test/SecurityManager-test.ts @matrix-org/element-crypto-web-reviewers | ||
/src/async-components/views/dialogs/security/ @matrix-org/element-crypto-web-reviewers | ||
/src/components/views/dialogs/security/ @matrix-org/element-crypto-web-reviewers | ||
/test/components/views/dialogs/security/ @matrix-org/element-crypto-web-reviewers | ||
/src/stores/SetupEncryptionStore.ts @matrix-org/element-crypto-web-reviewers | ||
/test/stores/SetupEncryptionStore-test.ts @matrix-org/element-crypto-web-reviewers | ||
|
||
# Ignore translations as those will be updated by GHA for Localazy download | ||
/src/i18n/strings | ||
# Ignore the synapse plugin as this is updated by GHA for docker image updating | ||
/playwright/plugins/homeserver/synapse/index.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_extends: matrix-org/matrix-js-sdk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Triggers after the playwright tests have finished, | ||
# taking the artifact and uploading it to Netlify for easier viewing | ||
name: Upload End to End Test report to Netlify | ||
on: | ||
workflow_run: | ||
workflows: ["End to End Tests"] | ||
types: | ||
- completed | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch || github.run_id }} | ||
cancel-in-progress: ${{ github.event.workflow_run.event == 'pull_request' }} | ||
|
||
jobs: | ||
report: | ||
if: github.event.workflow_run.conclusion != 'cancelled' | ||
name: Report results | ||
runs-on: ubuntu-latest | ||
environment: Netlify | ||
permissions: | ||
statuses: write | ||
deployments: write | ||
steps: | ||
- name: Download HTML report | ||
uses: actions/download-artifact@v4 | ||
with: | ||
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
run-id: ${{ github.event.workflow_run.id }} | ||
name: html-report | ||
path: playwright-report | ||
|
||
- name: 📤 Deploy to Netlify | ||
uses: matrix-org/netlify-pr-preview@v3 | ||
with: | ||
path: playwright-report | ||
owner: ${{ github.event.workflow_run.head_repository.owner.login }} | ||
branch: ${{ github.event.workflow_run.head_branch }} | ||
revision: ${{ github.event.workflow_run.head_sha }} | ||
token: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
site_id: ${{ secrets.NETLIFY_SITE_ID }} | ||
desc: Playwright Report | ||
deployment_env: EndToEndTests | ||
prefix: "e2e-" |
Oops, something went wrong.