From 21cba5946b245fbc7548e434c2c6af4009085d67 Mon Sep 17 00:00:00 2001 From: sudoooooo Date: Tue, 21 May 2024 19:38:18 +0800 Subject: [PATCH] feat: add format --- .github/workflows/server-lint.yml | 3 +++ .github/workflows/web-lint.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/server-lint.yml b/.github/workflows/server-lint.yml index 17cabfe3..8e1634a2 100644 --- a/.github/workflows/server-lint.yml +++ b/.github/workflows/server-lint.yml @@ -37,3 +37,6 @@ jobs: - name: Lint run: cd server && npm run lint + + - name: Format + run: cd server && npm run format diff --git a/.github/workflows/web-lint.yml b/.github/workflows/web-lint.yml index f74d938e..0425a06f 100644 --- a/.github/workflows/web-lint.yml +++ b/.github/workflows/web-lint.yml @@ -37,3 +37,6 @@ jobs: - name: Lint run: cd web && npm run lint + + - name: Format + run: cd web && npm run format