Skip to content

Added theme switcher #124

Added theme switcher

Added theme switcher #124

Workflow file for this run

name: Code Quality checks
on:
pull_request:
branches: [main]
concurrency:
# Rerun check when the PR is updated, https://stackoverflow.com/a/72408109
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
prettier:
name: Prettier
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Check formatting with Prettier
run: bun run prettier:check:ci