Skip to content

Commit

Permalink
Add "Node PR Lint, Build and Test" workflow (microsoft#2633)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweininger authored Apr 17, 2024
1 parent aaeace2 commit ee5faaf
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
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

0 comments on commit ee5faaf

Please sign in to comment.