Skip to content

Commit 7f99ba3

Browse files
committed
ci: Added job for the test suite
1 parent db9dbc1 commit 7f99ba3

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

azure-pipelines.yml

+14
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,17 @@ jobs:
2121
displayName: 'Install Dependencies'
2222
- script: 'yarn build'
2323
displayName: 'Test Build'
24+
- job: Test
25+
pool:
26+
vmImage: 'ubuntu-16.04'
27+
dependsOn: Build
28+
condition: succeeded()
29+
steps:
30+
- task: NodeTool@0
31+
inputs:
32+
versionSpec: '10.x'
33+
displayName: 'Install Node.js'
34+
- script: yarn
35+
displayName: 'Install Dependencies'
36+
- script: 'yarn test'
37+
displayName: 'Test Suite'

0 commit comments

Comments
 (0)