Skip to content

Commit

Permalink
feat: added test action
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahdeyyy committed Apr 3, 2024
1 parent 969e21b commit 7fd76ab
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run Bun Tests

on:
push:
branches: ["*"]
pull_request:
branches: ["*"]

jobs:
test:
name: Run Tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"

- name: Install Bun
run: npm install -g bun

- name: Run Tests
run: bun test

0 comments on commit 7fd76ab

Please sign in to comment.