File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 58
58
ATOM_RELEASES_S3_BUCKET: $(ATOM_RELEASES_S3_BUCKET)
59
59
PACKAGE_CLOUD_API_KEY: $(PACKAGE_CLOUD_API_KEY)
60
60
displayName: Create Nightly Release
61
+ - job : bump_dependencies
62
+ displayName : Bump Dependencies
63
+ timeoutInMinutes : 180
64
+
65
+ pool :
66
+ vmImage : macos-10.14
67
+
68
+ steps :
69
+ - task : NodeTool@0
70
+ inputs :
71
+ versionSpec : 12.13.1
72
+ displayName : Install Node.js 12.13.1
73
+
74
+ -
script :
npm install --global [email protected]
75
+ displayName : Update npm
76
+
77
+ - script : |
78
+ script/bootstrap
79
+ displayName: Bootstrap
80
+
81
+ - script : |
82
+ cd script/lib
83
+ npm install
84
+ displayName: npm install
85
+ - script : |
86
+ cd script/lib/update-dependency
87
+ node index.js
88
+ displayName: Bump depedencies
89
+ env:
90
+ AUTH_TOKEN: $(GITHUB_TOKEN)
You can’t perform that action at this time.
0 commit comments