Skip to content

Commit

Permalink
chore(github-actions): add test run
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnacioPorte committed Feb 5, 2024
1 parent 71941cf commit 79fd85c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Bun Test Workflow

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Bun
run: |
curl -fsSL https://bun.sh/install | bash
echo "$HOME/.bun/bin" >> $GITHUB_PATH
- name: Install dependencies
run: bun install

- name: Run tests
run: bun run test

0 comments on commit 79fd85c

Please sign in to comment.