-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into use-npm-ci
- Loading branch information
Showing
1,218 changed files
with
68,844 additions
and
24,513 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
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,3 @@ | ||
{ | ||
"superdesk_branch": "develop" | ||
} |
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,19 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/e2e/client" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "pip" # See documentation for possible values | ||
directory: "/e2e/server" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,36 @@ | ||
digraph { | ||
node [ | ||
shape=circle, | ||
fixedsize=true, | ||
width=1.6, | ||
] | ||
|
||
workflow [label="\nIN_PROGRESS \n / SUBMITTED \n / FETCHED \n / ROUTED"] | ||
published [label="PUBLISHED \n / CORRECTED"] | ||
|
||
"INGESTED" -> workflow [label="fetch"] | ||
"INGESTED" -> workflow [label="route"] | ||
|
||
workflow -> workflow [label=" send to -> SUBMITTED\n edit -> IN_PROGRESS"] | ||
|
||
"DRAFT" -> workflow | ||
|
||
workflow -> "SPIKED" | ||
"SPIKED" -> workflow | ||
|
||
workflow -> published | ||
|
||
workflow -> "SCHEDULED" | ||
"SCHEDULED" -> workflow | ||
|
||
|
||
"SCHEDULED" -> published | ||
|
||
published -> "UNPUBLISHED" | ||
"UNPUBLISHED" -> workflow | ||
|
||
published -> "KILLED" | ||
published -> "RECALLED" | ||
|
||
published -> published [label=" correct -> CORRECTED"] | ||
} |
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,12 @@ | ||
# How to run tests on chrome > 114 | ||
|
||
webdriver-manager only supports chrome <114 - https://github.com/angular/protractor/issues/5563 | ||
|
||
To use newer chrome versions, set `CHROME_BIN` and `CHROMEWEBDRIVER`(should point to folder where `chromedriver` file is located) environment variables. Use [Chrome for testing](https://developer.chrome.com/blog/chrome-for-testing) project to download desired chrome version and driver. | ||
|
||
# MacOS Setup | ||
`.app` is not an executable so path to chrome test browser should be pointing to the executable inside that folder | ||
|
||
Example setup with chrome test browser executable path: | ||
|
||
export CHROME_BIN="/Downloads/chrome-mac-arm64/Google_Chrome_for_Testing.app/Contents/MacOS/Google_Chrome_for_Testing" |
Oops, something went wrong.