static-cms/azure-pipelines.yml

28 lines
484 B
YAML
Raw Normal View History

2019-03-28 16:09:28 -04:00
jobs:
- job: ci
pool:
2019-03-28 16:09:28 -04:00
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
node_8_x:
node_version: 8.x
node_10_x:
node_version: 10.x
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
- script: |
2019-03-28 17:33:24 -04:00
apt-get update && apt-get install -y libgconf-2-4
node --version
npm --version
yarn --version
yarn
yarn bootstrap
yarn test:all:ci
env:
CYPRESS_RECORD_KEY: $(cypressRecordKey)