-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #345 from NUM-Forschungsdatenplattform/release/v1.8.0
Release/v1.8.0
- Loading branch information
Showing
184 changed files
with
27,389 additions
and
44,689 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 |
---|---|---|
|
@@ -26,7 +26,7 @@ workflows: | |
- nightly-builds | ||
jobs: | ||
- test: | ||
context: | ||
context: | ||
- org-global | ||
- slack-secrets | ||
- ms_teams | ||
|
@@ -38,19 +38,19 @@ workflows: | |
build_and_test: | ||
jobs: | ||
- test: | ||
context: | ||
context: | ||
- org-global | ||
- slack-secrets | ||
- ms_teams | ||
- security_scan: | ||
context: | ||
context: | ||
- org-global | ||
- slack-secrets | ||
- ms_teams | ||
filters: | ||
branches: | ||
only: | ||
- /^(release\/v\d+\.\d+\.\d+|hotfix\/v\d+\.\d+\.\d+|master)$/ | ||
- /^(release\/v\d+\.\d+\.\d+|hotfix\/v\d+\.\d+\.\d+|master|develop)$/ | ||
- tag_version: | ||
requires: | ||
- test | ||
|
@@ -147,7 +147,7 @@ jobs: | |
) | ||
echo "$MS_TEAMS_MSG_TEMPLATE" > /tmp/ms_teams_message | ||
when: always | ||
- run: | ||
- run: | ||
name: Report Build Success | ||
command: | | ||
MSG_PATH=/tmp/ms_teams_success_message | ||
|
@@ -160,11 +160,11 @@ jobs: | |
MSG_PATH=/tmp/ms_teams_failure_message | ||
sed -e 's/__build_status__/Failed/' -e 's/__theme_color__/e2091d/' /tmp/ms_teams_message > $MSG_PATH | ||
curl --fail -H "Content-Type: application/json" --data-binary @$MSG_PATH $CODEX_NOTIFICATIONS | ||
when: on_fail | ||
when: on_fail | ||
test: | ||
docker: | ||
# - image: circleci/node:14.9.0-buster | ||
- image: cimg/node:14.9.0 | ||
# - image: circleci/node:16.13.0-buster | ||
- image: cimg/node:16.13.0 | ||
steps: | ||
- checkout | ||
- node/install-packages: | ||
|
@@ -187,7 +187,7 @@ jobs: | |
- failed-build-slack-notification | ||
tag_version: | ||
docker: | ||
- image: cimg/node:14.9.0 | ||
- image: cimg/node:16.13.0 | ||
steps: | ||
- checkout | ||
- add_ssh_keys: | ||
|
@@ -211,7 +211,7 @@ jobs: | |
build_and_deploy: | ||
docker: | ||
- image: cimg/node:14.9.0 | ||
- image: cimg/node:16.13.0 | ||
auth: | ||
username: $DOCKER_USER | ||
password: $DOCKER_HUB_PASSWORD | ||
|
@@ -300,7 +300,7 @@ commands: | |
) | ||
echo "$MS_TEAMS_MSG_TEMPLATE" > /tmp/ms_teams_message | ||
when: always | ||
- run: | ||
- run: | ||
name: Report Build Success | ||
command: | | ||
MSG_PATH=/tmp/ms_teams_success_message | ||
|
@@ -313,7 +313,7 @@ commands: | |
MSG_PATH=/tmp/ms_teams_failure_message | ||
sed -e 's/__build_status__/Failed/' -e 's/__theme_color__/e2091d/' /tmp/ms_teams_message > $MSG_PATH | ||
curl --fail -H "Content-Type: application/json" --data-binary @$MSG_PATH $CODEX_NOTIFICATIONS | ||
when: on_fail | ||
when: on_fail | ||
|
||
orbs: | ||
sonarcloud: sonarsource/[email protected] | ||
|
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,41 @@ | ||
{ | ||
"root": true, | ||
"ignorePatterns": ["dist", "coverage"], | ||
"parserOptions": { | ||
"ecmaVersion": 2020 | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts"], | ||
"parserOptions": { | ||
"project": ["tsconfig.json"], | ||
"createDefaultProgram": true | ||
}, | ||
"extends": [ | ||
"plugin:@angular-eslint/recommended", | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended" | ||
], | ||
"rules": { | ||
"@typescript-eslint/no-non-null-assertion": "warn", | ||
"@typescript-eslint/no-empty-function": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@angular-eslint/component-class-suffix": "off", | ||
"@typescript-eslint/no-unused-vars": [ | ||
"warn", | ||
{ | ||
"argsIgnorePattern": "^_", | ||
"varsIgnorePattern": "^_", | ||
"caughtErrorsIgnorePattern": "^_" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"files": ["*.html"], | ||
"extends": ["plugin:@angular-eslint/template/recommended", "plugin:prettier/recommended"], | ||
"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 |
---|---|---|
|
@@ -8,6 +8,9 @@ | |
/bazel-out | ||
/reports | ||
|
||
#angular cache | ||
.angular/cache | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
|
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
Oops, something went wrong.