Skip to content

testing the issue

testing the issue #288

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
uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-title: Test
results-path: ./files/fail/*
coverage-path: ./files/fail/coverage.xml
allow-failed-tests: true
coverage-threshold: 44