Skip to content

Create an Azure Pipelines task wrapper #1

Create an Azure Pipelines task wrapper

Create an Azure Pipelines task wrapper #1

Workflow file for this run

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