-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add GH PR pipeline. Signed-off-by: Phillip Hoff <[email protected]> * Update service connection. Signed-off-by: Phillip Hoff <[email protected]> --------- Signed-off-by: Phillip Hoff <[email protected]>
- Loading branch information
1 parent
66a1600
commit d9d9e6b
Showing
2 changed files
with
23 additions
and
1 deletion.
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
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,22 @@ | ||
name: Node PR Lint, Build and Test | ||
|
||
on: | ||
# Trigger when manually run | ||
workflow_dispatch: | ||
|
||
# Trigger on pushes to `main` or `rel/*` | ||
push: | ||
branches: | ||
- main | ||
- rel/* | ||
|
||
# Trigger on pull requests to `main` or `rel/*` | ||
pull_request: | ||
branches: | ||
- main | ||
- rel/* | ||
|
||
jobs: | ||
Build: | ||
# Use template from https://github.com/microsoft/vscode-azuretools/tree/main/.github/workflows | ||
uses: microsoft/vscode-azuretools/.github/workflows/jobs.yml@main |