ci: add my first workflow )) #10
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: Pull requests check | |
on: | |
pull_request: | |
defaults: | |
run: | |
working-directory: ./backend | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: yarn | |
- run: yarn run format:verify | |
- run: yarn run lint:verify | |
- run: yarn run lint:types | |
- run: yarn run test |