Skip to content

Added a new orange indicator to highlight elements that are 100% in t… #26

Added a new orange indicator to highlight elements that are 100% in t…

Added a new orange indicator to highlight elements that are 100% in t… #26

Workflow file for this run

name: Build Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
run-tests:
name: Run build tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm run test