Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/block-apps.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Block PRs on following apps supernova, huereka, greenhouse and greenhouse-management
name: Block PRs on apps supernova, huereka, greenhouse and greenhouse-management and libs communicator, oauth and juno-ui-components

on:
pull_request:
Expand Down Expand Up @@ -75,12 +75,15 @@ jobs:
echo libs: ${{ needs.changes.outputs.libs }}
echo app changes: ${{ needs.changes.outputs.app-changes }}
echo lib changes: ${{ needs.changes.outputs.lib-changes }}
- name: Check if any of the apps are supernova, huereka, greenhouse or greenhouse-management
- name: Check if changes belongs to apps supernova, huereka, greenhouse or greenhouse-management or libs communicator, oauth or juno-ui-components
if: |
contains(needs.changes.outputs.app-changes, 'supernova') ||
contains(needs.changes.outputs.app-changes, 'huereka') ||
contains(needs.changes.outputs.app-changes, 'greenhouse') ||
contains(needs.changes.outputs.app-changes, 'greenhouse-management')
contains(needs.changes.outputs.app-changes, 'greenhouse-management') ||
contains(needs.changes.outputs.lib-changes, 'communicator') ||
contains(needs.changes.outputs.lib-changes, 'oauth') ||
contains(needs.changes.outputs.lib-changes, 'juno-ui-components')
run: |
echo "::error not allowed to make changes to supernova, huereka, greenhouse or greenhouse-management apps"
echo "::error not allowed to make changes to supernova, huereka, greenhouse or greenhouse-management apps or communicator, oauth or juno-ui-components libs"
exit 1
2 changes: 1 addition & 1 deletion apps/assets-overview/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
testEnvironment: "jsdom",
setupFilesAfterEnv: ["<rootDir>/setupTests.js"],
transformIgnorePatterns: [
"node_modules/(?!(juno-ui-components|messages-provider)/)",
"node_modules/(?!(juno-ui-components|messages-provider|url-state-router|utils)/)",
],
moduleNameMapper: {
// Jest currently doesn't support resources with query parameters.
Expand Down
20 changes: 10 additions & 10 deletions apps/assets-overview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
"github-markdown-css": "^5.1.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"juno-ui-components": "*",
"juno-ui-components": "https://assets.juno.global.cloud.sap/libs/juno-ui-components@2.13.8/package.tgz",
"luxon": "3.3.0",
"messages-provider": "*",
"messages-provider": "https://assets.juno.global.cloud.sap/libs/messages-provider@0.1.12/package.tgz",
"postcss": "^8.4.21",
"postcss-url": "^10.1.3",
"prop-types": "15.8.1",
Expand All @@ -45,10 +45,10 @@
"sass": "^1.60.0",
"shadow-dom-testing-library": "^1.7.1",
"tailwindcss": "^3.3.1",
"url-state-provider": "*",
"url-state-router": "*",
"url-state-provider": "https://assets.juno.global.cloud.sap/libs/url-state-provider@1.3.2/package.tgz",
"url-state-router": "https://assets.juno.global.cloud.sap/libs/url-state-router@1.0.3/package.tgz",
"util": "^0.12.4",
"utils": "*",
"utils": "https://assets.juno.global.cloud.sap/libs/utils@1.1.6/package.tgz",
"zustand": "4.3.7"
},
"scripts": {
Expand All @@ -60,15 +60,15 @@
"peerDependencies": {
"@tanstack/react-query": "4.28.0",
"custom-event-polyfill": "1.0.7",
"juno-ui-components": "*",
"juno-ui-components": "https://assets.juno.global.cloud.sap/libs/juno-ui-components@2.13.8/package.tgz",
"luxon": "3.3.0",
"messages-provider": "*",
"messages-provider": "https://assets.juno.global.cloud.sap/libs/messages-provider@0.1.12/package.tgz",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"url-state-provider": "*",
"url-state-router": "*",
"utils": "*",
"url-state-provider": "https://assets.juno.global.cloud.sap/libs/url-state-provider@1.3.2/package.tgz",
"url-state-router": "https://assets.juno.global.cloud.sap/libs/url-state-router@1.0.3/package.tgz",
"utils": "https://assets.juno.global.cloud.sap/libs/utils@1.1.6/package.tgz",
"zustand": "4.3.7"
},
"appProps": {
Expand Down
8 changes: 4 additions & 4 deletions apps/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
"autoprefixer": "^10.4.2",
"babel-jest": "^29.3.1",
"babel-plugin-transform-import-meta": "^2.2.0",
"communicator": "*",
"communicator": "https://assets.juno.global.cloud.sap/libs/communicator@2.2.6/package.tgz",
"custom-event-polyfill": "^1.0.7",
"esbuild": "^0.17.12",
"interweave": "^13.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"juno-ui-components": "*",
"oauth": "*",
"juno-ui-components": "https://assets.juno.global.cloud.sap/libs/juno-ui-components@2.13.8/package.tgz",
"oauth": "https://assets.juno.global.cloud.sap/libs/oauth@1.2.1/package.tgz",
"postcss": "^8.4.21",
"postcss-url": "^10.1.3",
"prop-types": "^15.8.1",
Expand All @@ -52,7 +52,7 @@
"peerDependencies": {
"custom-event-polyfill": "^1.0.7",
"juno-ui-components": "latest",
"oauth": "*",
"oauth": "https://assets.juno.global.cloud.sap/libs/oauth@1.2.1/package.tgz",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "^18.2.0"
Expand Down
4 changes: 2 additions & 2 deletions apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"babel-plugin-transform-import-meta": "^2.2.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"juno-ui-components": "*",
"juno-ui-components": "https://assets.juno.global.cloud.sap/libs/juno-ui-components@2.13.8/package.tgz",
"luxon": "^2.3.0",
"postcss": "^8.4.21",
"postcss-url": "^10.1.3",
Expand All @@ -47,7 +47,7 @@
},
"peerDependencies": {
"custom-event-polyfill": "^1.0.7",
"juno-ui-components": "*",
"juno-ui-components": "https://assets.juno.global.cloud.sap/libs/juno-ui-components@2.13.8/package.tgz",
"luxon": "^2.3.0",
"prop-types": "^15.8.1",
"react": "18.2.0",
Expand Down
10 changes: 10 additions & 0 deletions apps/dashboard/src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ const DOMAINS = {
"HCM",
"HDA",
"HEC",
"IAAS-20e8bf",
"IAAS-45b91f",
"IAAS-de5955",
"IAAS-9d6a56",
"IAAS-b56735",
"IAAS-ec5a3e",
"IAAS-d3495f",
"IAAS-90876f",
"IAAS-7ff5dd",
"IAAS-34a24e",
"KYMA",
"NEO",
"ORA",
Expand Down
4 changes: 3 additions & 1 deletion apps/exampleapp/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ module.exports = {
transform: { "\\.[jt]sx?$": "babel-jest" },
testEnvironment: "jsdom",
setupFilesAfterEnv: ["<rootDir>/setupTests.js"],
transformIgnorePatterns: ["node_modules/(?!(juno-ui-components)/)"],
transformIgnorePatterns: [
"node_modules/(?!(juno-ui-components|oauth|messages-provider|utils)/)",
],
moduleNameMapper: {
// Jest currently doesn't support resources with query parameters.
// Therefore we add the optional query parameter matcher at the end
Expand Down
20 changes: 10 additions & 10 deletions apps/exampleapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
"esbuild": "^0.17.19",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"juno-ui-components": "*",
"juno-ui-components": "https://assets.juno.global.cloud.sap/libs/juno-ui-components@2.13.8/package.tgz",
"luxon": "^2.3.0",
"messages-provider": "*",
"oauth": "*",
"messages-provider": "https://assets.juno.global.cloud.sap/libs/messages-provider@0.1.12/package.tgz",
"oauth": "https://assets.juno.global.cloud.sap/libs/oauth@1.2.1/package.tgz",
"postcss": "^8.4.21",
"postcss-url": "^10.1.3",
"prop-types": "^15.8.1",
Expand All @@ -42,9 +42,9 @@
"sass": "^1.60.0",
"shadow-dom-testing-library": "^1.7.1",
"tailwindcss": "^3.3.1",
"url-state-provider": "*",
"url-state-provider": "https://assets.juno.global.cloud.sap/libs/url-state-provider@1.3.2/package.tgz",
"util": "^0.12.4",
"utils": "*",
"utils": "https://assets.juno.global.cloud.sap/libs/utils@1.1.6/package.tgz",
"zustand": "4.3.7"
},
"scripts": {
Expand All @@ -55,15 +55,15 @@
"peerDependencies": {
"@tanstack/react-query": "4.28.0",
"custom-event-polyfill": "^1.0.7",
"juno-ui-components": "*",
"juno-ui-components": "https://assets.juno.global.cloud.sap/libs/juno-ui-components@2.13.8/package.tgz",
"luxon": "^2.3.0",
"messages-provider": "*",
"oauth": "*",
"messages-provider": "https://assets.juno.global.cloud.sap/libs/messages-provider@0.1.12/package.tgz",
"oauth": "https://assets.juno.global.cloud.sap/libs/oauth@1.2.1/package.tgz",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "^18.2.0",
"url-state-provider": "*",
"utils": "*",
"url-state-provider": "https://assets.juno.global.cloud.sap/libs/url-state-provider@1.3.2/package.tgz",
"utils": "https://assets.juno.global.cloud.sap/libs/utils@1.1.6/package.tgz",
"zustand": "4.3.7"
},
"importmapExtras": {
Expand Down
Loading