Removed arrow function from useEffect when showing confetti #1935
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: CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "^18.20.0" | |
- name: Install | |
run: | | |
yarn install | |
cd functions | |
yarn install | |
- name: Lint client | |
run: yarn lint | |
- name: Type Check | |
run: yarn tsc | |
- name: Run Tests | |
run: yarn test |