Skip to content

downgrading NET Standard to 2.0 for broader .NET compatibility #13

downgrading NET Standard to 2.0 for broader .NET compatibility

downgrading NET Standard to 2.0 for broader .NET compatibility #13

Workflow file for this run

name: Main
on: push
jobs:
main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x' # SDK Version to use; x will use the latest version of the 7.0 channel
- run: node -p 'process.arch'
- name: Install dependencies
run: npm i
- name: Run Dotnet Build
run: dotnet build src/QuickStart.sln
- name: Run Core
run: npm start
- name: Run Standard
run: npm run start:standard