-
-
Notifications
You must be signed in to change notification settings - Fork 612
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: azure tests: azure chore: try to fix symlinks chore: try to fix symlinks chore: remove ci opt chore: remove ci opt chore: remove ci opt chore: remove ci opt chore: remove ci opt chore: remove ci opt chore: remove ci opt chore: remove ci opt chore: :) chore: :) chore: :) chore: :) chore: :) chore: :) chore: :) chore: :D
- Loading branch information
1 parent
70bfbd9
commit c9c3fea
Showing
4 changed files
with
122 additions
and
143 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,38 @@ | ||
jobs: | ||
- job: ${{ parameters.name }} | ||
pool: | ||
vmImage: ${{ parameters.vmImage }} | ||
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" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
misterdev
Contributor
|
||
- script: | | ||
npm install | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
npm run bootstrap | ||
displayName: "Lerna bootstrap" | ||
- script: | | ||
npm run test | ||
displayName: "Run tests" | ||
- task: PublishTestResults@2 | ||
displayName: 'Publish Test Results' | ||
inputs: | ||
testResultsFiles: '**junit*.xml' | ||
testRunTitle: TestRun $ {{ parameters.name }} $(node_version) | ||
- task: PublishCodeCoverageResults@1 | ||
displayName: 'Publish code coverage results' | ||
inputs: | ||
codeCoverageTool: 'cobertura' | ||
summaryFileLocation: '**/coverage/cobertura-coverage.xml' |
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 |
---|---|---|
@@ -1,117 +1,19 @@ | ||
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" | ||
- task: PublishTestResults@2 | ||
displayName: 'Publish Test Results' | ||
inputs: | ||
testResultsFiles: '**junit*.xml' | ||
testRunTitle: TestRun ${{ parameters.name }} $(node_version) | ||
- task: PublishCodeCoverageResults@1 | ||
displayName: 'Publish code coverage results' | ||
inputs: | ||
codeCoverageTool: 'cobertura' | ||
summaryFileLocation: '**/coverage/cobertura-coverage.xml' | ||
- 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" | ||
- task: PublishTestResults@2 | ||
displayName: 'Publish Test Results' | ||
inputs: | ||
testResultsFiles: '**junit*.xml' | ||
testRunTitle: TestRun ${{ parameters.name }} $(node_version) | ||
- task: PublishCodeCoverageResults@1 | ||
displayName: 'Publish code coverage results' | ||
inputs: | ||
codeCoverageTool: 'cobertura' | ||
summaryFileLocation: '**/coverage/cobertura-coverage.xml' | ||
- 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" | ||
- task: PublishTestResults@2 | ||
displayName: 'Publish Test Results' | ||
inputs: | ||
testResultsFiles: '**junit*.xml' | ||
testRunTitle: TestRun ${{ parameters.name }} $(node_version) | ||
- task: PublishCodeCoverageResults@1 | ||
displayName: 'Publish code coverage results' | ||
inputs: | ||
codeCoverageTool: 'cobertura' | ||
summaryFileLocation: '**coverage/cobertura-coverage.xml' | ||
- template: azure-pipelines-template.yml | ||
parameters: | ||
name: macOS | ||
vmImage: macOS-10.13 | ||
|
||
- template: azure-pipelines-template.yml | ||
parameters: | ||
name: Linux | ||
vmImage: ubuntu-16.04 | ||
|
||
# TODO: enable when windows symlinks in monorepos work... | ||
# - template: azure-pipelines-template.yml | ||
# parameters: | ||
# name: Windows | ||
# vmImage: vs2017-win2016 | ||
|
||
variables: | ||
nproc: 4 | ||
nproc: 3 |
Oops, something went wrong.
Doesn't work, you can try
npm -v
and see you still use old versionRight solution:
You can add script:
to verify result