Merge pull request #2511 from planetarium/release/2.7.6 #353
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: Styles | |
on: | |
push: | |
branches: ["*"] | |
jobs: | |
styles: | |
runs-on: ubuntu-latest | |
container: | |
image: node:lts | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
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 |