File tree 1 file changed +43
-0
lines changed
1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Node.js
2
+ # Build a general Node.js project with npm.
3
+ # Add steps that analyze code, save build artifacts, deploy, and more:
4
+ # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
5
+
6
+ trigger :
7
+ - dev
8
+
9
+ pool :
10
+ vmImage : ubuntu-latest
11
+
12
+ steps :
13
+ - task : NodeTool@0
14
+ inputs :
15
+ versionSpec : ' 10.x'
16
+ displayName : ' Install Node.js'
17
+
18
+ - checkout : self
19
+ persistCredentials : true
20
+
21
+ - script : |
22
+ cd microsoft-authentication-library-for-js
23
+ npm install
24
+ npm run build
25
+ displayName : ' npm install and build'
26
+
27
+ - task : CmdLine@2
28
+ inputs :
29
+ script : |
30
+ cd microsoft-authentication-library-for-js
31
+
32
+ git subtree split --prefix lib/msal-browser -b msal-browser-latest
33
+
34
+ git push -u origin msal-browser-latest
35
+
36
+ - task : CmdLine@2
37
+ inputs :
38
+ script : |
39
+ cd microsoft-authentication-library-for-js
40
+
41
+ git subtree split --prefix lib/msal-common -b msal-common-latest
42
+
43
+ git push -u origin msal-common-latest
You can’t perform that action at this time.
0 commit comments