Skip to content

Commit

Permalink
chore(workflows): add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Brainshaker95 committed Feb 20, 2024
1 parent 21cb407 commit 53ea3fc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on:
- pull_request
- push

jobs:
run:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

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

- name: Install dependencies
run: bun i

- name: Run tests
run: bun test

0 comments on commit 53ea3fc

Please sign in to comment.