From f3bdf16fa9563fa1256c8cdd244d660580eea1c1 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Tue, 30 Jun 2026 21:52:15 +0200 Subject: [PATCH] cleanup: format + minor setup About component --- .forgejo/workflows/format.yml | 32 +++++++++++++++---------------- frontend/src/components/About.tsx | 4 +++- package-lock.json | 6 ------ 3 files changed, 19 insertions(+), 23 deletions(-) delete mode 100644 package-lock.json diff --git a/.forgejo/workflows/format.yml b/.forgejo/workflows/format.yml index d2b0145..3097881 100644 --- a/.forgejo/workflows/format.yml +++ b/.forgejo/workflows/format.yml @@ -1,25 +1,25 @@ name: Format frontend with Prettier on: - push: - branches: ["master"] + push: + branches: ["master"] jobs: - format: - runs-on: alpine - container: node:26-alpine + format: + runs-on: alpine + container: node:26-alpine - steps: - - name: Install dependencies - run: apk add --no-cache git + steps: + - name: Install dependencies + run: apk add --no-cache git - - name: Checkout repo - uses: actions/checkout@v4 + - name: Checkout repo + uses: actions/checkout@v4 - - name: Install frontend deps - working-directory: frontend - run: npm install + - name: Install frontend deps + working-directory: frontend + run: npm install - - name: Run Prettier check - working-directory: frontend - run: npx prettier --check . + - name: Run Prettier check + working-directory: frontend + run: npx prettier --check . diff --git a/frontend/src/components/About.tsx b/frontend/src/components/About.tsx index c7617b2..2218ea5 100644 --- a/frontend/src/components/About.tsx +++ b/frontend/src/components/About.tsx @@ -4,7 +4,9 @@ export default function About() {

About

-
+
+

+
); } diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index d56ad8a..0000000 --- a/package-lock.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "aramjonghu-site", - "lockfileVersion": 3, - "requires": true, - "packages": {} -}