Skip to content

Commit 89438bb

Browse files
authored
Merge pull request MicrosoftDocs#3 from mchelen/patch-1
Use Npm task
2 parents 2e35b35 + 36873ec commit 89438bb

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

azure-pipelines.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,16 @@ steps:
88
inputs:
99
versionSpec: '8.x'
1010

11-
- script: |
12-
npm install
13-
npm test
11+
- task: Npm@1
12+
displayName: 'npm install'
13+
inputs:
14+
command: install
15+
16+
- task: Npm@1
17+
displayName: 'npm test'
18+
inputs:
19+
command: custom
20+
customCommand: 'test'
1421

1522
- task: PublishTestResults@2
1623
inputs:

0 commit comments

Comments
 (0)