Skip to content

fix: Corrected font paths in global.css to ensure proper loading #20

fix: Corrected font paths in global.css to ensure proper loading

fix: Corrected font paths in global.css to ensure proper loading #20

Workflow file for this run

name: Lint and format checking
on:
pull_request:
branches:
- "**"
push:
branches:
- master
workflow_call:
jobs:
lint:
name: Check linting
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Check linting
run: deno lint .
format:
name: Check format
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Check formatting
run: deno fmt --check .