Merge pull request #255 from tchryssos/tc-159-vis-context-remove #124
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: Lint | |
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the main branch | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn | |
- name: Init prisma | |
run: yarn prisma generate | |
- name: Run linting | |
run: yarn lint | |
- name: Check Typescript | |
run: yarn tsc |