Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 37 additions & 25 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,40 @@
pool:
vmImage: 'ubuntu-latest'

strategy:
matrix:
node_8_x:
node_version: 8.x
node_9_x:
node_version: 9.x
node_10_x:
node_version: 10.x
node_11_x:
node_version: 11.x
node_12_x:
node_version: 12.x

steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
displayName: 'Install Node.js'
- script: |
npm install
npm test
npm run lint
npm run cs-check
npm run dist
displayName: 'npm install and build'
jobs:
- job: Test
strategy:
matrix:
node_8_x:
node_version: 8.x
node_9_x:
node_version: 9.x
node_10_x:
node_version: 10.x
node_11_x:
node_version: 11.x
node_12_x:
node_version: 12.x
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
displayName: 'Install Node.js'
- script: |
npm install
npm test
npm run lint
npm run cs-check
npm run dist
displayName: 'npm install and build'
- job: Docs
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
addToPath: true
architecture: 'x64'
- script: |
pip install mkdocs==1.0.4
mkdocs build --clean
displayName: 'build docs'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
site_name: react-jsonschema-form documentation
docs_dir: packages/core/docs
docs_dir: docs
theme: readthedocs

nav:
Expand Down
17 changes: 0 additions & 17 deletions packages/core/mkdocs.yml

This file was deleted.