Skip to content

Bump ws from 6.2.2 to 6.2.3 in /web #37

Bump ws from 6.2.2 to 6.2.3 in /web

Bump ws from 6.2.2 to 6.2.3 in /web #37

Workflow file for this run

name: API (.NET Core)
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
env:
working-directory: ./api
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.101
- name: Install dependencies
run: dotnet restore
working-directory: ${{env.working-directory}}
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: ${{env.working-directory}}
- name: Test
run: dotnet test --no-restore --verbosity normal
working-directory: ${{env.working-directory}}