Skip to content

Fix workflow

Fix workflow #1054

Workflow file for this run

name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
push:
jobs:
lint_unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
npm install
- run: |
npm run all
e2e_test:
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest, windows-latest, macos-latest ]
dotnet-version: [ '7.0' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- run: dotnet --version
- uses: ./
with:
solutionPath: TestSolution/TestSolution.sln
failOnIssue: '0'
minimumReportSeverity: 'WARNING'
# Reproduce second time execution on self-hosted runner
- uses: ./
with:
solutionPath: TestSolution/TestSolution.sln
failOnIssue: '0'