Merge pull request #2556 from planetarium/feat/rtt-node-selection #380
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: 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 |