Skip to content

fix(ci): fix prettier #494

fix(ci): fix prettier

fix(ci): fix prettier #494

Workflow file for this run

name: Check Format
on:
push:
pull_request:
branches:
- master
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- uses: actions/[email protected]
with:
node-version: 16.x
- name: Install Prettier
run: npm install -g prettier
- name: Check Format
run: |
prettier -c "./**/*.{js,css,json}"