Skip to content

chore(deps-dev): bump webpack from 5.88.1 to 5.97.1 in /projects/core #182

chore(deps-dev): bump webpack from 5.88.1 to 5.97.1 in /projects/core

chore(deps-dev): bump webpack from 5.88.1 to 5.97.1 in /projects/core #182

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
working-directory: ./projects/native
run: dotnet restore
- name: Build
working-directory: ./projects/native/MelonRuntime.CLI
run: dotnet build MelonRuntime.CLI.csproj --no-restore
- name: Test
working-directory: ./projects/native/MelonRuntime.JavaScriptTests
run: dotnet test MelonRuntime.JavaScriptTests.csproj --verbosity normal