Skip to content

use project names instead of full paths to make the picker easier to … #578

use project names instead of full paths to make the picker easier to …

use project names instead of full paths to make the picker easier to … #578

Workflow file for this run

name: Build Pull Requests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
strategy:
matrix:
# ubuntu build not supported in paket.dependencies for repo builds,
# need to add linux commands first
os: [windows-latest, macos-latest]
fail-fast: false # we have timing issues on some OS, so we want them all to run
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v2
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Restore tools
run: dotnet tool restore
- run: yarn global add @vscode/vsce
- name: Run Test
run: dotnet run --project build -- -t Build