Skip to content

Commit

Permalink
👷 chore: set jest unit test configuration in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
seungok Jeong committed Jul 14, 2023
1 parent 1aca3a0 commit 71cebcb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pull request

on:
push:
branches:
- main
- develop
pull_request:
branches:
- "**"

jobs:
Jest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install dependencies
run: yarn install

- name: Run unit tests
run: yarn test

0 comments on commit 71cebcb

Please sign in to comment.