Skip to content

Commit f67fd0d

Browse files
committed
fix: Run npm install for API documentation of the isolated package
1 parent 5f6f20c commit f67fd0d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy-vitepress-docs.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
cp -r internal/documentation/. ${{ runner.temp }}/isolated-docs/
5050
- name: Install documentation dependencies from NPM
5151
working-directory: ${{ runner.temp }}/isolated-docs
52-
run: npm ci --engine-strict
52+
# npm ci won't work as this package relies on the monorepo's package-lock.json
53+
# Run npm install instead as we want latest @ui5/* packages to be installed from NPM
54+
run: npm install --engine-strict
5355
- name: Fetch gh-pages branch
5456
run: git fetch origin gh-pages --depth=1
5557
- name: generate CLI doc

0 commit comments

Comments
 (0)