Replace JsonCli tool with direct nupkg parsing and native `dotnet new… #1288
This file contains hidden or 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
| 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 |