forked from microsoft/vscode-azureappservice
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "Node PR Lint, Build and Test" workflow (microsoft#2633)
- Loading branch information
1 parent
aaeace2
commit ee5faaf
Showing
1 changed file
with
22 additions
and
0 deletions.
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
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 |