Skip to content

Commit

Permalink
feat(workflow): add unit test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
okdargy committed May 26, 2024
1 parent 46b98b9 commit 8a12a53
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/run-jest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Run Unit Tests with Jest

on:
pull_request:
branches:
- main
- master
- hono-rewrite

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: pnpm install
- name: Run Jest tests
run: pnpm test

0 comments on commit 8a12a53

Please sign in to comment.