Skip to content

[Snyk] Security upgrade webpack-cli from 3.3.12 to 4.0.0 #364

[Snyk] Security upgrade webpack-cli from 3.3.12 to 4.0.0

[Snyk] Security upgrade webpack-cli from 3.3.12 to 4.0.0 #364

Workflow file for this run

name: Dotnet Tests
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '2.1' ]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1.7.2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal