Bump typescript from 5.6.2 to 5.6.3 in /XtermBlazor/src #212
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: Dotnet Package | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet: [6, 7, 8] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Restore .NET dependencies | |
run: dotnet restore XtermBlazor | |
- name: Build .NET project | |
run: dotnet build XtermBlazor --no-restore | |
# - name: Test | |
# run: dotnet test XtermBlazor --no-build --verbosity normal |