summaryrefslogtreecommitdiff
path: root/.github/workflows/format.yaml
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-20 20:27:18 -0500
committerseth <[email protected]>2023-12-21 02:34:37 +0000
commit5aa2e6c0c6e4c73d93307e9f70803237006afb28 (patch)
treef26a67452e2d4a4ed30506e533ac17cc95184fac /.github/workflows/format.yaml
parent2a6f22fc1f1939b102fb8925bf04914a4b553e17 (diff)
go back to lume
Diffstat (limited to '.github/workflows/format.yaml')
-rw-r--r--.github/workflows/format.yaml35
1 files changed, 0 insertions, 35 deletions
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml
deleted file mode 100644
index d4849eb..0000000
--- a/.github/workflows/format.yaml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: format
-
-on:
- push:
- branches: [main]
- workflow_dispatch:
-
-permissions:
- contents: write
-
-jobs:
- format:
- runs-on: ubuntu-latest
-
- steps:
- - name: checkout repository
- uses: actions/checkout@v3
-
- - name: install Nix
- uses: cachix/install-nix-action@v20
-
- - uses: cachix/cachix-action@v12
- with:
- name: getchoo
- authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
-
- - name: format
- run: |
- nix develop --command bash -c "pnpm install && pnpm format"
-
- - name: add and commit
- uses: EndBug/add-and-commit@v9
- with:
- default_author: github_actions
- message: "chore: format with prettier"