Skip to content

Prevent font flickering #5

Prevent font flickering

Prevent font flickering #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Run lint
# this includes code formatting and type checking
run: pnpm run lint
- name: Run Build
run: pnpm run build