Fix find references in codelense #594
Workflow file for this run
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
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@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '22' | |
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 |