fix(useDebouncedCallback): wrap handler in useEventCallback so it's n… #132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Run Testing Suite | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking out Repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- name: Install Dependencies | |
run: yarn bootstrap | |
- name: Run Tests | |
run: yarn test | |
- name: Build Project | |
run: yarn build | |
- name: Upload Test Coverage to CodeCov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |