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 9a14553 commit 576f90aCopy full SHA for 576f90a
.github/config/codeql-config.yml
@@ -2,3 +2,6 @@ name: "CodeQL config"
2
3
paths:
4
- src
5
+
6
+paths-ignore:
7
+ - '**/node_modules'
.github/workflows/codeql-analysis.yml
@@ -10,7 +10,7 @@ on:
10
jobs:
11
CodeQL-Build:
12
13
- runs-on: windows-latest
+ runs-on: ubuntu-latest
14
15
steps:
16
- name: Checkout repository
@@ -22,9 +22,8 @@ jobs:
22
with:
23
config-file: ./.github/config/codeql-config.yml
24
25
- - run: |
26
- echo "Run Umbraco-CMS build"
27
- pwsh -command .\build\build.ps1
+ - name: Build
+ run: dotnet build umbraco-netcore-only.sln # also runs npm build
28
29
- name: Perform CodeQL Analysis
30
uses: github/codeql-action/analyze@v1
0 commit comments