Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Bump vite from 5.0.0 to 5.0.5 in /src/EducationTrail/ClientApp (#91) #66

Bump vite from 5.0.0 to 5.0.5 in /src/EducationTrail/ClientApp (#91)

Bump vite from 5.0.0 to 5.0.5 in /src/EducationTrail/ClientApp (#91) #66

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: Ensure ASP.NET Project Builds
on:
push:
branches: [ "dev", "main" ]
pull_request:
branches: [ "dev", "main" ]
env:
DOTNET_CORE_VERSION: 8.0.x
WORKING_DIRECTORY: ./src/EducationTrail
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
- name: Restore dependencies
run: dotnet restore "${{ env.WORKING_DIRECTORY }}"
- name: Build
run: dotnet build "${{ env.WORKING_DIRECTORY }}" --no-restore
- name: Test
run: dotnet test "${{ env.WORKING_DIRECTORY }}" --no-build --verbosity normal