Skip to content

Commit

Permalink
Merge pull request #6 from farcasterxyz/nickcherry/typecheck-and-lint…
Browse files Browse the repository at this point in the history
…-action

[chore] Add Github Action for Linting + Typechecking Web
  • Loading branch information
nickcherry authored Jan 25, 2024
2 parents 9790d91 + 35e9d4f commit c059eea
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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

0 comments on commit c059eea

Please sign in to comment.