Skip to content

Add github workflow

Add github workflow #1

Workflow file for this run

name: Prettier Check
on:
push:
branches:
- '*'
- '!main'
jobs:
prettier-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Prettier Check
run: npx prettier --check .