Skip to content

Merge pull request #22 from unclejustin/patch-1 #87

Merge pull request #22 from unclejustin/patch-1

Merge pull request #22 from unclejustin/patch-1 #87

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/bun.lockb') }}
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run Tests 🧪
run: bun run test