Project Workflow - PMs should not be able to bypass Consultant checks for Internships #2299
Workflow file for this run
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: | |
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: EdgeDB Setup | |
uses: ./.github/actions/edgedb-setup | |
- name: Check for no duplicate dependencies | |
run: yarn dedupe --check | |
- name: Check TypeScript | |
run: yarn type-check | |
- name: Generate GQL Schema | |
run: yarn start -- --gen-schema | |
- 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 . |