Skip to content

Merge pull request #6 from farcasterxyz/nickcherry/typecheck-and-lint… #1

Merge pull request #6 from farcasterxyz/nickcherry/typecheck-and-lint…

Merge pull request #6 from farcasterxyz/nickcherry/typecheck-and-lint… #1

Workflow file for this run

name: Quikcast
on:
push:
branches:
- main
jobs:
web:
runs-on: ubuntu-latest # Linux base image
steps:
- uses: actions/checkout@v3 # Checkout repo
- uses: oven-sh/setup-bun@v1 # Setup bun
with:
bun-version: 1.0.15 # You can also use a specific version
- run: cd web
- run: bun install # Only needed if you have any dependencies
- run: bun run typecheck
- run: bun run lint