Skip to content

fix(example): end session after getting PIT #52

fix(example): end session after getting PIT

fix(example): end session after getting PIT #52

Workflow file for this run

name: Jest Unit Tests
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run tests w/ coverage reports
run: yarn test --coverage