Skip to content

Commit

Permalink
[ACS-5027] Fix ADF linking in ACA (#3114)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKinas committed Apr 11, 2023
1 parent af2f9eb commit b37584e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/actions/adf-linking/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;
1 change: 1 addition & 0 deletions tsconfig.adf.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit b37584e

Please sign in to comment.