Skip to content

Merge pull request #48 from barrilocho/feat-select-options #73

Merge pull request #48 from barrilocho/feat-select-options

Merge pull request #48 from barrilocho/feat-select-options #73

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run Linter
run: bun run lint
- name: Run tests
run: bun run test:ci