Skip to content

Don't forget the tutorial! #39

Don't forget the tutorial!

Don't forget the tutorial! #39

Workflow file for this run

name: Prettier
on:
pull_request:
branches:
- master
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Prettify code
uses: creyD/[email protected]
with:
prettier_options: --check **/*.{js,jsx,ts,tsx,css,scss}
only_changed: True
dry: True
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}