Skip to content

Merge pull request #122 from ryandgoulding/feat/github_action_unit_tests #1

Merge pull request #122 from ryandgoulding/feat/github_action_unit_tests

Merge pull request #122 from ryandgoulding/feat/github_action_unit_tests #1

Workflow file for this run

name: unit tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: yarn install
- name: Run unit tests
run: yarn test