17 lines
367 B
YAML
17 lines
367 B
YAML
jobs:
|
|
- template: azure-pipelines-template.yml
|
|
parameters:
|
|
name: unit_tests
|
|
vmImage: 'Ubuntu-16.04'
|
|
preScript: ''
|
|
script: yarn test:ci
|
|
|
|
- template: azure-pipelines-template.yml
|
|
parameters:
|
|
name: e2e_tests
|
|
vmImage: 'Ubuntu-16.04'
|
|
preScript: |
|
|
apt-get update && apt-get install -y libgconf-2-4
|
|
script: |
|
|
yarn test:e2e:ci
|