Skip to content

Commit a9ab47d

Browse files
darangiaminya
authored andcommitted
update nightly job
1 parent 2074f6e commit a9ab47d

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

script/vsts/nightly-release.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,33 @@ jobs:
5858
ATOM_RELEASES_S3_BUCKET: $(ATOM_RELEASES_S3_BUCKET)
5959
PACKAGE_CLOUD_API_KEY: $(PACKAGE_CLOUD_API_KEY)
6060
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)

0 commit comments

Comments
 (0)