Add lint/build/test PR workflow (#1304)

This commit is contained in:
Alex Weininger 2024-04-25 13:22:36 -07:00 коммит произвёл GitHub
Родитель 9bca7f9a5b
Коммит 1b537ca4bc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 22 добавлений и 0 удалений

22
.github/workflows/main.yml поставляемый Normal file
Просмотреть файл

@ -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