Skip to content

Add small glow to links in tree roots to indicate they are clickable #995

Add small glow to links in tree roots to indicate they are clickable

Add small glow to links in tree roots to indicate they are clickable #995

Workflow file for this run

name: unit-tests
on:
push:
branches:
- main
- develop
pull_request:
jobs:
jest-unit-tests:
name: unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.JS
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: |
npm-${{ hashFiles('package-lock.json') }}
npm-
- name: Install JS dependencies
run: npm install
- name: Run jest tests
run: npm run test:coverage
- name: Upload test coverage to Codecov
uses: codecov/codecov-action@v3