Skip to content

Feature: Configurable Threshold Values via config.json #1

Feature: Configurable Threshold Values via config.json

Feature: Configurable Threshold Values via config.json #1

Workflow file for this run

name: Unit Test
on:
push:
branches:
- main
pull_request:
branches:
- main
- release*
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18] # Test against multiple Node.js versions
steps:
- name: Checkout code
uses: actions/checkout@v4 # Check out the code repository
- name: Setup Node.js
uses: actions/setup-node@v3 # Setup Node.js environment
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install # Install project dependencies
- name: Run tests
run: npm test # Run Jest tests