Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Dec 26, 2023
2 parents 778994a + 0b5fce2 commit af0bf93
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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: '20.x'
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel
- name: Install dependencies
run: npm i
- name: Run Dotnet Build
run: dotnet build src/QuickStart.sln
- name: Run
run: npm start

0 comments on commit af0bf93

Please sign in to comment.