Skip to content

fix

fix #42

Workflow file for this run

name: Jest
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: "14"
# Install required deps for action
- name: Install Dependencies
run: yarn install
# Finally, run our tests
- name: Run the tests
run: yarn test:unit