Skip to content

Commit

Permalink
Action check
Browse files Browse the repository at this point in the history
  • Loading branch information
TyHil committed Mar 4, 2024
1 parent 84f5ed8 commit eee80a1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/format-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Format Check

on: push

jobs:
main:
name: Prettier
runs-on: ubuntu-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install Prettier
run: npm install next prettier

- name: Run Prettier
run: npm run format:check

0 comments on commit eee80a1

Please sign in to comment.