Skip to content

Commit

Permalink
ci: add github workflow for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HVish committed Aug 27, 2023
1 parent 770ad92 commit c57992a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: tests
on: [push]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm test
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Redux thaga

![tests](https://github.com/HVish/redux-thaga/actions/workflows/test.yml/badge.svg)

This redux middleware enhances redux-saga with redux-thunk capabilites.

## Usage
Expand Down

0 comments on commit c57992a

Please sign in to comment.