Skip to content

Merge pull request #2512 from planetarium/hotfix/2.7.7 #354

Merge pull request #2512 from planetarium/hotfix/2.7.7

Merge pull request #2512 from planetarium/hotfix/2.7.7 #354

Workflow file for this run

name: Styles
on:
push:
branches: ["*"]
jobs:
styles:
runs-on: ubuntu-latest
container:
image: node:lts
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/setup-node@v3.8.1
with:
node-version: 20
cache: 'yarn'
- name: Install
shell: bash
run: yarn
- name: Check Formatting
run: yarn prettier --check "src/**/*.{ts,tsx,json}"
- run: yarn codegen
- name: Type Check
run: yarn tsc --noEmit
- name: ESLint Check
run: yarn eslint ./src --quiet