Merge pull request #200 from CerebriumAI/kyle/fix-twilio-example #423
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: 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 }} |