@principal-ai/quality-lens-cli 0.1.19 → 0.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +4 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1000,16 +1000,19 @@ jobs:
|
|
|
1000
1000
|
uses: actions/setup-node@v4
|
|
1001
1001
|
with:
|
|
1002
1002
|
node-version: '20'
|
|
1003
|
+
registry-url: 'https://registry.npmjs.org'
|
|
1003
1004
|
|
|
1004
1005
|
- name: Install project dependencies
|
|
1005
1006
|
run: npm ci
|
|
1006
1007
|
continue-on-error: true
|
|
1008
|
+
env:
|
|
1009
|
+
NODE_AUTH_TOKEN: \${{ secrets.NPM_TOKEN }}
|
|
1007
1010
|
|
|
1008
1011
|
- name: Install Quality Lens CLI
|
|
1009
1012
|
run: npm install -g @principal-ai/quality-lens-cli
|
|
1010
1013
|
|
|
1011
1014
|
- name: Run quality lenses
|
|
1012
|
-
run: quality-lens run . --output results.json --format json
|
|
1015
|
+
run: quality-lens run . --install --output results.json --format json
|
|
1013
1016
|
|
|
1014
1017
|
- name: Display results summary
|
|
1015
1018
|
if: always()
|