added workaround for jest resolving axios >= v1.0 #33
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: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install modules | |
run: yarn | |
- name: Check formatting with Prettier | |
run: yarn format:check | |
- name: Check quality with ESLint | |
run: yarn lint | |
- name: Check types compile | |
run: yarn type-check | |
- name: Check tests pass | |
run: yarn test | |
- name: Check app builds | |
run: yarn build |