Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Prettier

on: [push]

jobs:
prettier:
runs-on: ubuntu-latest
defaults:
run:
working-directory: junction-app
steps:
- uses: actions/checkout@v4

- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- run: bun install

- name: Run Prettier check
run: bun run format:check
3 changes: 3 additions & 0 deletions junction-app/bun.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"firebase": "^12.6.0",
"lucide-react": "^0.553.0",
"next": "16.0.3",
"prettier": "^3.6.2",
"react": "19.2.0",
"react-dom": "19.2.0",
},
Expand Down Expand Up @@ -835,6 +836,8 @@

"prelude-ls": ["[email protected]", "", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="],

"prettier": ["[email protected]", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ=="],

"prop-types": ["[email protected]", "", { "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="],

"protobufjs": ["[email protected]", "", { "dependencies": { "@protobufjs/aspromise": "^1.1.2", "@protobufjs/base64": "^1.1.2", "@protobufjs/codegen": "^2.0.4", "@protobufjs/eventemitter": "^1.1.0", "@protobufjs/fetch": "^1.1.0", "@protobufjs/float": "^1.0.2", "@protobufjs/inquire": "^1.1.0", "@protobufjs/path": "^1.1.2", "@protobufjs/pool": "^1.1.0", "@protobufjs/utf8": "^1.1.0", "@types/node": ">=13.7.0", "long": "^5.0.0" } }, "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg=="],
Expand Down
4 changes: 3 additions & 1 deletion junction-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write ."
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"firebase": "^12.6.0",
"lucide-react": "^0.553.0",
"next": "16.0.3",
"prettier": "^3.6.2",
"react": "19.2.0",
"react-dom": "19.2.0"
},
Expand Down