Merge pull request #254 from CerebriumAI/wesley/add_webhook_retry_blurb #677
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 }} |