Skip to content
Closed
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
32 changes: 32 additions & 0 deletions .github/workflows/azptask-vsix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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: npm ci
working-directory: azure-pipelines-task
- run: npm run build
working-directory: azure-pipelines-task
- run: npm run lint
working-directory: azure-pipelines-task
- run: npm run format && git diff-files
working-directory: azure-pipelines-task
- run: npm run test
working-directory: azure-pipelines-task
- run: npm run package
working-directory: azure-pipelines-task
- uses: actions/upload-artifact@v4
with:
name: vsix
path: ./azure-pipelines-task/vsix/*.vsix
2 changes: 2 additions & 0 deletions azure-pipelines-task/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
lib
vsix
Loading
Loading