Skip to content

Code-Coverage

Code-Coverage #244

Workflow file for this run

# Workflow for checking tests
name: Check Tests
on:
# Runs for every pull-requests created
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
testheadless:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
run: ['test-headless','test-headless-jquery', 'test-headless-ff']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run Build
run: make
- name: Run ${{ matrix.run }}
run: make ${{ matrix.run }}