We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1958d40 commit 26f1898Copy full SHA for 26f1898
.github/workflows/deploy-vitepress-docs.yaml
@@ -49,7 +49,9 @@ jobs:
49
cp -r internal/documentation/. ${{ runner.temp }}/isolated-docs/
50
- name: Install documentation dependencies from NPM
51
working-directory: ${{ runner.temp }}/isolated-docs
52
- run: npm ci --engine-strict
+ # 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
55
- name: Fetch gh-pages branch
56
run: git fetch origin gh-pages --depth=1
57
- name: generate CLI doc
0 commit comments