diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..3a80632 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,30 @@ +name: Test Build + +on: + workflow_dispatch: + pull_request: + push: + branches: + - main + +permissions: + contents: write + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v4 + + - name: Set up Bun.js 🛠️ + uses: oven-sh/setup-bun@v2 + with: + bun-version: latest + + - name: Install dependencies 📦 + run: bun install + + - name: Build 🏗 + run: bun run build --filter pwa \ No newline at end of file diff --git a/apps/pwa/src/routes/fomo-game.tsx b/apps/pwa/src/routes/fomo-game.tsx index 25d8c0b..daf2bc3 100644 --- a/apps/pwa/src/routes/fomo-game.tsx +++ b/apps/pwa/src/routes/fomo-game.tsx @@ -5,12 +5,11 @@ import { useEffect, useState, useRef } from "react"; import { MintMemeButton } from "@/components/MintMemeButton"; import { Canvas } from "@react-three/fiber"; import { getProject } from "@theatre/core"; -import { SheetProvider, editable as e, PerspectiveCamera } from "@theatre/r3f"; import { OrbitControls, useGLTF } from "@react-three/drei"; const sheet = getProject("ikkyu").sheet("Sheet"); function Bonk() { - const { nodes, materials } = useGLTF("/cartoon_bonk.glb"); // Load the .glb file + const { nodes } = useGLTF("/cartoon_bonk.glb"); // Load the .glb file return ( - - - - - - - - - ); - } - useEffect(() => { let motionListener: any; if (isRunning) { diff --git a/bun.lockb b/bun.lockb index 4a9a7e1..8461049 100755 Binary files a/bun.lockb and b/bun.lockb differ