-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathbuild.yaml
More file actions
20 lines (20 loc) · 830 Bytes
/
build.yaml
File metadata and controls
20 lines (20 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
steps:
- task: NodeTool@0
displayName: 'Use Node $(NodeVersion).x'
inputs:
versionSpec: '$(NodeVersion).x'
checkLatest: true
- script: 'git config --local user.email rushbot@users.noreply.github.com'
displayName: 'git config email'
- script: 'git config --local user.name Rushbot'
displayName: 'git config name'
- script: 'node common/scripts/install-run-rush.js change --verify'
displayName: 'Verify Change Logs'
- script: 'node common/scripts/install-run-rush.js install'
displayName: 'Rush Install'
- script: 'node common/scripts/install-run-rush.js rebuild --verbose --production'
displayName: 'Rush Rebuild'
env:
# Prevent time-based browserslist update warning
# See https://github.com/microsoft/rushstack/issues/2981
BROWSERSLIST_IGNORE_OLD_DATA: 1