Skip to content

Commit

Permalink
GitHub Issue #8 - add continuous integration (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
oakmac authored Mar 9, 2024
1 parent 4023d8b commit c9a2edd
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---

name: Continuous Integration

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: bun install

- name: Code linter
run: bun run lint

- name: Unit tests
run: bun test

0 comments on commit c9a2edd

Please sign in to comment.