File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change
1
+ <PoliCheckExclusions >
2
+ <!-- All strings must be UPPER CASE -->
3
+ <!-- Each of these exclusions is a folder name -if \[name]\exists in the file path, it will be skipped -->
4
+ <Exclusion Type =" FolderPathFull" >DEPS</Exclusion >
5
+ <!-- Each of these exclusions is a folder name -if any folder or file starts with "\[name]", it will be skipped -->
6
+ <!-- <Exclusion Type="FolderPathStart">ABC|XYZ</Exclusion>-->
7
+ <!-- Each of these file types will be completely skipped for the entire scan -->
8
+ <!-- <Exclusion Type="FileType">.ABC|.XYZ</Exclusion>-->
9
+ <!-- The specified file names will be skipped during the scan regardless which folder they are in -->
10
+ <!-- <Exclusion Type="FileName">ABC.TXT|XYZ.CS</Exclusion>-->
11
+ </PoliCheckExclusions >
Original file line number Diff line number Diff line change @@ -43,10 +43,14 @@ extends:
43
43
- 16.x
44
44
45
45
testSteps :
46
+ # https://github.com/nodejs/node-gyp/issues/2869
47
+ - script : python3 -m pip install setuptools
46
48
- script : npm ci
47
49
displayName : Install dependencies
48
50
49
51
- script : npm test
50
52
displayName : Test
51
53
52
54
publishPackage : ${{ parameters.publishPackage }}
55
+
56
+ policheckExclusionsFile : ' $(Build.SourcesDirectory)/PoliCheckExclusions.xml'
You can’t perform that action at this time.
0 commit comments