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 4561e56 commit 1618c29Copy full SHA for 1618c29
.github/workflows/codeql-analysis.yml
@@ -60,11 +60,17 @@ jobs:
60
# If this step fails, then you should remove it and run the build manually (see below)
61
- name: Autobuild
62
uses: github/codeql-action/autobuild@v2
63
-
64
- - name: Custom-Build
+
+ - name: Install Dependencies for custom build
65
+ shell: bash
66
run: |
- npm ci
67
- npm run compile
+ sed -i '1i//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}' .npmrc
68
+ npm ci --no-audit
69
+ env:
70
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71
72
+ - name: Custom build
73
+ run: npm run compile
74
75
# ℹ️ Command-line programs to run using the OS shell.
76
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
0 commit comments