Skip to content

Commit

Permalink
ci: add Jest test workflow for PRs
Browse files Browse the repository at this point in the history
Co-Authored-By: Michael Latman <[email protected]>
  • Loading branch information
devin-ai-integration[bot] and michaellatman committed Dec 12, 2024
1 parent 2f0a711 commit 480ddce
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/jest-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Jest Tests

on:
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install dependencies
run: npm ci

- name: Run Jest tests
run: npm test

0 comments on commit 480ddce

Please sign in to comment.