File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 5454 echo "🚀 Publishing @ui5/${{ matrix.package }}"
5555
5656 # TODO: Uncomment when ready to publish
57- # npm ci
57+ # npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
5858 # npm publish --access public
5959
6060 publish-cli :
@@ -73,15 +73,15 @@ jobs:
7373 run : |
7474 set -e
7575 # Install dependencies
76- npm ci
76+ npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
7777
78- # Build all the extractor
79- cd ./lib /shrinkwrap-extractor
80- npm ci
78+ # Build the extractor
79+ cd ./packages /shrinkwrap-extractor
80+ npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
8181
8282 # Generate npm-shrinkwrap.json
83- cd ../../packages/ cli
84- node ../../lib/ shrinkwrap-extractor/cli.js ../../
83+ cd ../cli
84+ node ../shrinkwrap-extractor/cli.js @ui5/cli ../../package-lock.json
8585
8686 - name : Publish @ui5/cli
8787 working-directory : packages/cli
You can’t perform that action at this time.
0 commit comments