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
382 changes: 240 additions & 142 deletions ci/ci-release-notes/package-lock.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions ci/ci-test-tasks/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
registry=https://pkgs.dev.azure.com/mseng/PipelineTools/_packaging/PipelineTools_PublicPackages/npm/registry/

always-auth=true
8 changes: 6 additions & 2 deletions ci/ci-test-tasks/detect-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,13 @@ jobs:
pool:
vmImage: ubuntu-20.04
steps:
- task: NpmAuthenticate@0
inputs:
workingFile: ci/ci-test-tasks/.npmrc
- script: |
npm i axios
displayName: npm i axios
cd ci/ci-test-tasks
npm ci --ignore-scripts
displayName: npm ci (axios)
- script: |
echo $(tasks)
node ./ci/ci-test-tasks/run-main-and-verify.js $(ADOToken) $(ADOUrl) $(System.TeamProject) $(MainPipelineId) $(tasks)
Expand Down
297 changes: 297 additions & 0 deletions ci/ci-test-tasks/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions ci/ci-test-tasks/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "ci-test-tasks-scripts",
"version": "1.0.0",
"private": true,
"description": "CI scripts for azure-pipelines-tasks test infrastructure",
"dependencies": {
"axios": "1.14.0"
}
}
10 changes: 8 additions & 2 deletions ci/ci-test-tasks/test-init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,11 @@ steps:
tfx login --auth-type pat --service-url $(ADOUrl) --token $(ADOToken)
displayName: 'Tfx login'

- script: npm install axios@0.27.2
displayName: 'Npm install axios'
- task: NpmAuthenticate@0
inputs:
workingFile: ci/ci-test-tasks/.npmrc

- script: |
cd ci/ci-test-tasks
npm ci --ignore-scripts
displayName: 'Npm ci (axios)'