Skip to content

test 2

test 2 #286

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
- feature/**
- fix/**
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test - Results All
uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-title: Test - Results All
results-path: ./files/dotnet-results/**/*.trx
allow-failed-tests: false
coverage-path: ./files/dotnet-results/TestResults/coverage.xml
coverage-threshold: 10
coverage-type: opencover