Skip to content

WIP

WIP #1

Workflow file for this run

---
name: UnitTest
on:
release:
types:
- published
push:
branches: ["dev", "dev-update", "private-dk-dev-init"]
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
jobs:
UnitTest-Jest:
name: UnitTest:Jest
runs-on: ubuntu-22.04 # ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Run jest with coverage
run: npm run coverage