diff --git a/.github/actions/adf-linking/action.yml b/.github/actions/adf-linking/action.yml index e9d96369c3..f5f76c0dee 100644 --- a/.github/actions/adf-linking/action.yml +++ b/.github/actions/adf-linking/action.yml @@ -17,6 +17,11 @@ runs: BRANCH=`echo $COMMIT_MESSAGE | grep -o "\[link-adf\:[^]]*\]" | sed -e 's#\[link-adf:##g' | sed -e 's#\]##g'` echo "Cloning ADF with branch ${BRANCH}" && \ git clone https://github.com/Alfresco/alfresco-ng2-components.git --depth=1 --branch ${BRANCH} ../alfresco-ng2-components + # ADF theming needs it the styling + CWD=`pwd` + cd ../alfresco-ng2-components + npm install @angular/material + cd $CWD else echo -e "Using ADF from installed node_modules." fi ; diff --git a/tsconfig.adf.json b/tsconfig.adf.json index 9447f7a668..07f3ade872 100644 --- a/tsconfig.adf.json +++ b/tsconfig.adf.json @@ -23,6 +23,7 @@ "paths": { "@alfresco/adf-testing": ["../alfresco-ng2-components/lib/testing"], "@alfresco/adf-testing/shared": ["../alfresco-ng2-components/lib/testing/src/lib/shared"], + "@alfresco/playwright-shared": ["e2e/playwright/shared/index.ts"], "@alfresco/adf-core": ["../alfresco-ng2-components/lib/core"], "@alfresco/adf-core/*": ["../alfresco-ng2-components/lib/core/*/public-api.ts"], "@alfresco/adf-core/shell": ["../alfresco-ng2-components/lib/core/shell/src/index.ts"],