Skip to content

Commit

Permalink
ci: Add GitHub Actions workflow for building and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
kerolloz committed Jun 20, 2024
1 parent 4c159fc commit 700dfda
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build and Lint

on:
push:
pull_request:

jobs:
build-and-test:
runs-on: ubuntu-latest

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

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

- name: Install dependencies
run: bun install

- name: Lint
run: bun lint

- name: Build TypeScript
run: bun build

0 comments on commit 700dfda

Please sign in to comment.