Skip to content

feat: added test action #1

feat: added test action

feat: added test action #1

Workflow file for this run

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