Merge pull request #242 from CerebriumAI/Hkhan161-patch-1 #640
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: Lint on Push | |
| on: [push] | |
| jobs: | |
| build-only: | |
| name: Lint with Prettier | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Prettify code | |
| uses: creyD/[email protected] | |
| with: | |
| prettier_options: --write **/*.{ts,tsx,js,jsx,yml,graphql,mdx,md,json} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |