Merge pull request #187 from CerebriumAI/kyle/CER-3426-update-example… #357
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@v3 | |
| - 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 }} |