docs: add note about Docker login requirement for public namespaced i… #690
Workflow file for this run
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 }} |