Enable useServiceEffect to receive a Promisable
service param
#17
Workflow file for this run
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: Quality Checks | |
on: | |
workflow_dispatch: | |
pull_request: | |
workflow_call: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
uses: Optum/react-hooks/.github/actions/setup@main | |
- name: Run TypeScript Build | |
run: yarn build | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
uses: Optum/react-hooks/.github/actions/setup@main | |
- name: Run Unit Tests | |
run: yarn jest | |