Skip to content

Possible light/dark mode for the page :) #56

Possible light/dark mode for the page :)

Possible light/dark mode for the page :) #56

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