Skip to content

Commit

Permalink
feat: initialises gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ixahmedxi committed May 16, 2024
1 parent d3c5726 commit 0f04d16
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Main CI

on: [push, pull_request]

jobs:
main-ci:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v1

- name: Install Dependencies
run: bun install

- name: Check Format
run: bun format:check

- name: Lint
run: bun lint

- name: Typecheck
run: bun typecheck

- name: Unit tests
run: bun test

- name: Build
run: bun run build

0 comments on commit 0f04d16

Please sign in to comment.