Skip to content

Bump the all-dependencies group in /samples/AspireWithJavaScript/AspireJavaScript.Vue with 14 updates #270

Bump the all-dependencies group in /samples/AspireWithJavaScript/AspireJavaScript.Vue with 14 updates

Bump the all-dependencies group in /samples/AspireWithJavaScript/AspireJavaScript.Vue with 14 updates #270

Workflow file for this run

name: .NET Aspire Samples CI
on:
push:
branches: [main]
paths-ignore:
- "**/*.md"
- "**/*.gitignore"
- "**/*.gitattributes"
pull_request:
paths-ignore:
- "**/*.md"
- "**/*.gitignore"
- "**/*.gitattributes"
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Build Samples
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
DOTNET_MULTILEVEL_LOOKUP: false
DOTNET_INSTALL_DIR: ${{ matrix.os == 'ubuntu-latest' && '' || 'dotnet' }}
ASPIRE_ALLOW_UNSECURED_TRANSPORT: true
steps:
- uses: actions/checkout@v4
- name: Dapr tool installer
uses: dapr/setup-dapr@v1
with:
version: '1.13.0'
- name: Install .NET SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: ${{ matrix.os == 'ubuntu-latest' && './global.json' || '.\global.json' }}
- uses: actions/setup-node@v4
with:
node-version: '20.10'
- name: Build
run: ${{ matrix.os == 'ubuntu-latest' && './build.sh' || '.\build.cmd' }}
- name: Test
if: ${{ matrix.os == 'ubuntu-latest' }}
# Note that the space after the last double dash (--) is intentional
run: >
dotnet test ./tests/SamplesTests.sln
--logger console --logger trx --logger html --logger GitHubActions
--results-directory ./TestResults --blame
--
RunConfiguration.CollectSourceInformation=true
continue-on-error: true
- name: Publish Test Results
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v4
with:
name: TestResults
path: ./TestResults