Skip to content

Commit

Permalink
add action for jest unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ptbarnum4 committed Oct 2, 2024
1 parent f8e4ec2 commit 5f7dc21
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Unit Tests
on: [push]
jobs:
cypress-run:
name: Run Jest Tests
runs-on: ubuntu-22.04
environment: test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
uses: actions/setup-node@v3
with:
node-version: '22'
- run: npm install
- run: npm test

0 comments on commit 5f7dc21

Please sign in to comment.