Create an Azure Pipelines task wrapper #1
Workflow file for this run
This file contains hidden or 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
name: 'Build Azure DevOps Extension' | |
on: | |
pull_request: | |
push: | |
tags: | |
- 'v[0-9]*' | |
branches: | |
- main | |
- 'v[0-9]*' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- run: cd azure-pipelines-task | |
- run: npm ci | |
- run: npm run build | |
- run: npm run lint | |
- run: npm run format && git diff-files | |
- run: npm run test | |
- run: npm run package | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: vsix | |
path: ./vsix/*.vsix |