From cb20ee61888e8660bab1cf35a6c1aa7dd9d4374a Mon Sep 17 00:00:00 2001 From: David Crespo Date: Wed, 8 Jan 2025 22:26:18 -0600 Subject: [PATCH 1/3] remove reformatter github workflow --- .github/workflows/reformatter.yaml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/reformatter.yaml diff --git a/.github/workflows/reformatter.yaml b/.github/workflows/reformatter.yaml deleted file mode 100644 index 15004f92c7..0000000000 --- a/.github/workflows/reformatter.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Reformat - -on: - push: - branches-ignore: - - main - -jobs: - ci: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - node-version: 22 - cache: 'npm' - - - name: Install dependencies - run: npm install - - - name: Format - run: npm run fmt - - - uses: EndBug/add-and-commit@v9 - with: - add: . - message: 'Bot commit: format with prettier' - default_author: github_actions From 3b18a8caa13e7ff8a7c39aff82ae3d85690ffaa0 Mon Sep 17 00:00:00 2001 From: David Crespo Date: Wed, 8 Jan 2025 22:26:18 -0600 Subject: [PATCH 2/3] introduce formatting error to test linter in CI --- app/pages/ProjectsPage.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/pages/ProjectsPage.tsx b/app/pages/ProjectsPage.tsx index 9359e471f2..751e13f039 100644 --- a/app/pages/ProjectsPage.tsx +++ b/app/pages/ProjectsPage.tsx @@ -20,6 +20,14 @@ import { useColsWithActions, type MenuAction } from '~/table/columns/action-col' import { Columns } from '~/table/columns/common' import { useQueryTable } from '~/table/QueryTable' import { CreateLink } from '~/ui/lib/CreateButton' + + + + + + + + import { EmptyMessage } from '~/ui/lib/EmptyMessage' import { PageHeader, PageTitle } from '~/ui/lib/PageHeader' import { TableActions } from '~/ui/lib/Table' From 78a3a19ff68b5fdb8159c38f85ae871cd875eef5 Mon Sep 17 00:00:00 2001 From: David Crespo Date: Wed, 8 Jan 2025 22:40:52 -0600 Subject: [PATCH 3/3] Back out "introduce formatting error to test linter in CI" This backs out commit 3b18a8caa13e7ff8a7c39aff82ae3d85690ffaa0. --- app/pages/ProjectsPage.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app/pages/ProjectsPage.tsx b/app/pages/ProjectsPage.tsx index 751e13f039..9359e471f2 100644 --- a/app/pages/ProjectsPage.tsx +++ b/app/pages/ProjectsPage.tsx @@ -20,14 +20,6 @@ import { useColsWithActions, type MenuAction } from '~/table/columns/action-col' import { Columns } from '~/table/columns/common' import { useQueryTable } from '~/table/QueryTable' import { CreateLink } from '~/ui/lib/CreateButton' - - - - - - - - import { EmptyMessage } from '~/ui/lib/EmptyMessage' import { PageHeader, PageTitle } from '~/ui/lib/PageHeader' import { TableActions } from '~/ui/lib/Table'