Skip to content

Build for osx-arm64 #101

Build for osx-arm64

Build for osx-arm64 #101

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore LegendsViewer.sln
- name: Build Backend and Frontend (Vue 3)
run: dotnet build LegendsViewer.sln --configuration Release --no-restore
- name: Run tests
run: dotnet test LegendsViewer.sln --no-restore --verbosity normal