Skip to content

Commit

Permalink
Implement new features: reset property, add new store properties (#5)
Browse files Browse the repository at this point in the history
* Implement new features: reset property, add new store properties

* Fix fragmented

* Add reset fn to invented hooks

* Fix displayName for React chrome extension

* fix

* Remove invalid console.log

* fix

* Update README.md

* fix

* reformat

* fix

* fix

* Rename fragmented-store to fragstore

* Fix docs

* fix

* Reimplement lib to another way

* Update proxy

* fix

* fix

* fix

* fix callbacks

* Add comments

* add test

* Add GH action

* format and rename tests folder
  • Loading branch information
aralroca authored Oct 13, 2021
1 parent 9f553f5 commit 0ef6eb2
Show file tree
Hide file tree
Showing 9 changed files with 7,441 additions and 312 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on: [pull_request]
jobs:
build:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [12.x, 14.x, 15.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install -g yarn
- name: yarn install, build, and test
run: |
yarn install
yarn build
yarn test
Loading

0 comments on commit 0ef6eb2

Please sign in to comment.