File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed
Tasks/emailReportTask/config Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 11name : Node CI
22
3- on : [push, pull_request]
3+ on :
4+ push :
5+ branches :
6+ - master
7+ - ' releases/**'
8+
9+ pull_request :
10+ branches :
11+ - ' *'
412
513jobs :
614 build :
1826 with :
1927 node-version : ${{ matrix.node-version }}
2028 - name : npm install, build, and test
21- run : |
22- npm install --no-optional
29+ run : |
2330 npm run build --if-present
2431 env :
2532 CI : true
Original file line number Diff line number Diff line change @@ -166,4 +166,4 @@ export class ConfigurationProvider implements IConfigurationProvider {
166166 default : return GroupTestResultsBy . Run ;
167167 }
168168 }
169- }
169+ }
Original file line number Diff line number Diff line change 44 "description" : " " ,
55 "scripts" : {
66 "test" : " npm run jest" ,
7- "build" : " npm run build:t1 && npm run build:t2" ,
7+ "build" : " npm install --no-optional && npm run build:t1 && npm run build:t2" ,
88 "build:t1" : " npm run build:emailreport" ,
99 "build:t2" : " npm run build:prinsights" ,
1010 "pack:t1" : " npm run clean && npm run build:t1 && npm run pack:emailreport" ,
1717 "pack:prinsights" : " node ./commands/package.js pullRequestInsights" ,
1818 "e2e:emailreport" : " node js/emailReportExtension/emailReportTask/tests/__e_to_e_tests__/InvokeTest.js" ,
1919 "e2e:prinsights" : " node js/pullRequestInsightsExtension/pullRequestInsightsTask/tests/__e_to_e_tests__/InvokeTest.js" ,
20- "clean" : " rimraf dist *.vsix "
20+ "clean" : " rimraf dist && rimraf node_modules "
2121 },
2222 "repository" : {
2323 "type" : " git" ,
You can’t perform that action at this time.
0 commit comments