Skip to content

test

test #285

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