Skip to content

Update README.md

Update README.md #438

Workflow file for this run

name: Check code formatting, run unit tests, etc
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install javascript modules
run: npm install
- name: Check code formatting
run: npm run check-pretty
- name: Run tests
run: npm run test