Skip to content

Bump vite from 4.3.9 to 4.5.2 in /src/Shorthand.Vite.SampleSite #55

Bump vite from 4.3.9 to 4.5.2 in /src/Shorthand.Vite.SampleSite

Bump vite from 4.3.9 to 4.5.2 in /src/Shorthand.Vite.SampleSite #55

name: '[Dependabot] Build and publish'
on:
pull_request:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
NUGET_CERT_REVOCATION_MODE: offline
jobs:
net-test:
name: .NET tests
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install .NET 7
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-quality: ga
- name: Restore NuGet packages
run: dotnet restore --verbosity minimal
- name: Run .NET tests
run: dotnet test --configuration Release
net-build:
name: .NET build
runs-on: ubuntu-latest
needs: [ net-test ]
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install .NET 7
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-quality: ga
- name: Restore NuGet packages
run: dotnet restore --verbosity minimal
- name: Publish application
run: dotnet publish --configuration Release --output ./artifacts
working-directory: ./