Prevent login if user is disabled #3248
This file contains hidden or 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: | |
pull_request: | |
push: | |
branches: | |
- master | |
- develop | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Node Setup & Yarn Install | |
uses: ./.github/actions/setup | |
- name: Gel Setup | |
uses: ./.github/actions/gel-setup | |
- name: Check for no duplicate dependencies | |
run: yarn dedupe --check | |
- name: Generate GQL Schema | |
run: yarn start -- --gen-schema && yarn gql-tada generate output | |
- name: Check TypeScript | |
run: yarn type-check | |
- name: Upload GQL Schema | |
uses: actions/upload-artifact@v4 | |
with: | |
name: schema.graphql | |
path: schema.graphql | |
- name: Lint | |
run: yarn eslint --ext .ts,.tsx --max-warnings 0 . |