Skip to content

Bump @types/node from 20.12.12 to 22.7.4 in /src/ui #988

Bump @types/node from 20.12.12 to 22.7.4 in /src/ui

Bump @types/node from 20.12.12 to 22.7.4 in /src/ui #988

Workflow file for this run

name: Build and test
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --verbosity normal --filter "Category!=LongRunning"