-
-
Notifications
You must be signed in to change notification settings - Fork 602
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): Set up CI with Azure Pipelines
- Loading branch information
1 parent
876b8cc
commit 89d3a19
Showing
2 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.js text eol=lf | ||
*.ts text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
jobs: | ||
- job: linux | ||
pool: | ||
vmImage: ubuntu-16.04 | ||
strategy: | ||
maxParallel: 3 | ||
matrix: | ||
node-10: | ||
node_version: ^10.10.0 | ||
node-8: | ||
node_version: ^8.12.0 | ||
node-6: | ||
node_version: ^6.14.4 | ||
steps: | ||
- task: NodeTool@0 | ||
displayName: "Install Node.js" | ||
inputs: | ||
versionSpec: $(node_version) | ||
- script: | | ||
npm install -g npm@latest | ||
displayName: "Install npm" | ||
- script: | | ||
npm ci | ||
displayName: "Install dependencies" | ||
- script: | | ||
./node_modules/.bin/lerna bootstrap | ||
displayName: "Lerna bootstrap" | ||
- script: | | ||
npm test | ||
displayName: "Run tests" | ||
- job: macos | ||
pool: | ||
vmImage: "macOS 10.13" | ||
strategy: | ||
maxParallel: 3 | ||
matrix: | ||
node-10: | ||
node_version: ^10.10.0 | ||
node-8: | ||
node_version: ^8.12.0 | ||
steps: | ||
- task: NodeTool@0 | ||
displayName: "Install Node.js" | ||
inputs: | ||
versionSpec: $(node_version) | ||
- script: | | ||
npm install -g npm@latest | ||
displayName: "Install npm" | ||
- script: | | ||
npm ci | ||
displayName: "Install dependencies" | ||
- script: | | ||
./node_modules/.bin/lerna bootstrap | ||
displayName: "Lerna bootstrap" | ||
- script: | | ||
npm test | ||
displayName: "Run tests" | ||
- job: windows | ||
pool: | ||
vmImage: vs2017-win2016 | ||
strategy: | ||
maxParallel: 3 | ||
matrix: | ||
node-8: | ||
node_version: ^8.12.0 | ||
node-6: | ||
node_version: ^6.14.4 | ||
steps: | ||
- task: NodeTool@0 | ||
displayName: "Install Node.js" | ||
inputs: | ||
versionSpec: $(node_version) | ||
- script: | | ||
npm install -g npm@latest | ||
displayName: "Install npm" | ||
- script: | | ||
npm ci | ||
displayName: "Install dependencies" | ||
- script: | | ||
./node_modules/.bin/lerna.cmd bootstrap | ||
displayName: "Lerna bootstrap" | ||
- script: | | ||
npm test | ||
displayName: "Run tests" |