Skip to content

Commit

Permalink
Add CI check
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Sep 2, 2024
1 parent f064acc commit f62ed87
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check
on:
push:
paths:
- apps/website/**
- packages/**
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: 🔦 Run linter
run: bun run lint
- name: 🪐 Check TypeScript
run: bun run typecheck

0 comments on commit f62ed87

Please sign in to comment.