Adding Pixeland #1
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: Prettier Code Formatter | |
on: [push, pull_request] | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Prettier | |
uses: creyD/[email protected] | |
with: | |
prettier_options: --write **/*.{js,jsx,ts,tsx,json,css,md} | |
commit_message: 'chore: format code' | |
commit_options: '--no-verify --signoff' | |
commit: true # Set to true if you want the action to commit changes | |
file_pattern: '.' |