feat: log graphql requests #563
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: Frontend checks | |
on: | |
push: | |
branches: [ main, staging, dev ] | |
pull_request: | |
branches: [ main, staging, dev ] | |
jobs: | |
test_build: | |
name: Test client build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./client | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
run: yarn install | |
- name: build | |
run: | | |
CI=false | |
yarn build | |
lint: | |
name: Lint client files | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./client | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: yarn --prefer-offline | |
- name: Prettier check | |
run: yarn run prettier-check | |