Skip to content

Bump nanoid from 3.3.4 to 3.3.8 in /src/Scripts #827

Bump nanoid from 3.3.4 to 3.3.8 in /src/Scripts

Bump nanoid from 3.3.4 to 3.3.8 in /src/Scripts #827

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
jobs:
build-and-test:
runs-on: windows-latest
strategy:
matrix:
framework: [net6.0-windows, net8.0-windows]
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup dotnet
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: dotnet restore
run: dotnet restore Bravo.sln
- name: dotnet build
run: dotnet build Bravo.sln --configuration Release --framework ${{ matrix.framework }} --no-restore
- name: dotnet test
run: dotnet test Bravo.sln --configuration Release --framework ${{ matrix.framework }} --no-build --verbosity normal