diff --git a/.github/workflows/server-lint.yml b/.github/workflows/server-lint.yml index dec0c544..1f988aca 100644 --- a/.github/workflows/server-lint.yml +++ b/.github/workflows/server-lint.yml @@ -32,3 +32,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 f0963789..a5236083 100644 --- a/.github/workflows/web-lint.yml +++ b/.github/workflows/web-lint.yml @@ -32,3 +32,6 @@ jobs: - name: Lint run: cd web && npm run lint + + - name: Format + run: cd web && npm run format