Skip to content

Feature/another cleanup pass #4

Feature/another cleanup pass

Feature/another cleanup pass #4

Workflow file for this run

name: All Jest tests pass
on:
push:
branches:
- dev
- main
pull_request:
branches:
- dev
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 18.x
- run: npm install
- run: npm test
- if: ${{ failure() }}
run: exit 1