Skip to content

Commit

Permalink
add prettier check
Browse files Browse the repository at this point in the history
  • Loading branch information
ollieri3 committed Nov 1, 2023
1 parent bf6ff56 commit bd4e851
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ jobs:
- name: Install dependencies
run: npm install

- name: Type Check
- name: Typescript
run: npm run ts:check

- name: Type Check (FE)
- name: Typescript FE
run: npm run ts:check:fe

- name: Prettier Check
run: npm run prettier:check
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"ts:check": "npx tsc --noEmit",
"ts:check:fe": "npx tsc --noEmit --project tsconfig.frontend.json",
"tailwind": "tailwindcss -i ./src/public/main.css -o ./dist/public/main.css",
"tailwind:watch": "npm run tailwind -- --watch"
"tailwind:watch": "npm run tailwind -- --watch",
"prettier:check": "prettier . --check"
},
"author": "Oliver Ridsdale",
"license": "ISC",
Expand Down

0 comments on commit bd4e851

Please sign in to comment.