Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cs50victor committed Feb 21, 2024
1 parent dae1591 commit 91beb55
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 18 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ci-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
- name: Install Global Dependencies
run: bun install --ignore-scripts

# Errors out on build when separated into multiple steps
- name: Install, Build, and Lint Demo
run: cd demo && bun install --ignore-scripts && bun run build && bun run lint
- name: Install
working-directory: ./www
run: bun install --ignore-scripts

- name: Build
working-directory: ./www
run: bun run build

- name: Lint
working-directory: ./www
run: bun run lint
2 changes: 0 additions & 2 deletions www/app/fal/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ const InputCanvas = dynamic(
);




export default function Home() {
const [input, setInput] = useState('masterpice, best quality, A cinematic shot of a baby raccoon wearing an intricate italian priest robe')
const [image, setImage] = useState(null)
Expand Down
13 changes: 0 additions & 13 deletions www/components/excalidrawWrapper.tsx

This file was deleted.

0 comments on commit 91beb55

Please sign in to comment.