Skip to content

TYP-26: Add unit test #3

TYP-26: Add unit test

TYP-26: Add unit test #3

Workflow file for this run

name: test
on: pull_request
jobs:
tests:
runs-on: ubuntu-latest
steps:
# Checkout the Repo
- uses: actions/checkout@v2
- uses: irongut/CodeCoverageSummary@v1.3.0
# Install Node 18
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 18
# Install dependencies
- run: npm ci
# Run tests
- run: npm run test:coverage