diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..a882442
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,7 @@
+root = true
+
+[*]
+end_of_line = lf
+insert_final_newline = true
+indent_style = space
+indent_size = 4
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
new file mode 100644
index 0000000..130c1b1
--- /dev/null
+++ b/.github/workflows/format.yml
@@ -0,0 +1,22 @@
+name: Format
+
+on:
+ push:
+ pull_request:
+
+jobs:
+ format:
+ runs-on: ubuntu-latest
+ name: Format Files
+ steps:
+ - uses: actions/checkout@v3
+ - uses: oven-sh/setup-bun@v2
+ - run: bun install
+ - name: Prettier
+ run: bun run format ./src
+ env:
+ GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
+ - uses: stefanzweifel/git-auto-commit-action@v4
+ if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
+ with:
+ commit_message: 'style: format files'
diff --git a/README.md b/README.md
index 3620165..337d398 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
# inflatedchickens
## usage
+
```bash
# install dependencies
bun i
diff --git a/bun.lockb b/bun.lockb
index 1cffc2e..1e6848d 100755
Binary files a/bun.lockb and b/bun.lockb differ
diff --git a/postcss.config.js b/postcss.config.js
index 2e7af2b..0f77216 100644
--- a/postcss.config.js
+++ b/postcss.config.js
@@ -1,6 +1,6 @@
export default {
- plugins: {
- tailwindcss: {},
- autoprefixer: {},
- },
-}
+ plugins: {
+ tailwindcss: {},
+ autoprefixer: {}
+ }
+};
diff --git a/src/app.html b/src/app.html
index 165a387..00b6bae 100644
--- a/src/app.html
+++ b/src/app.html
@@ -1,12 +1,12 @@
-
+
-
-
-
-
- %sveltekit.head%
-
-
- %sveltekit.body%
-
+
+
+
+
+ %sveltekit.head%
+
+
+ %sveltekit.body%
+
diff --git a/src/lib/components/Action.svelte b/src/lib/components/Action.svelte
index 647d543..53dcd92 100644
--- a/src/lib/components/Action.svelte
+++ b/src/lib/components/Action.svelte
@@ -1,11 +1,17 @@
-