Skip to content

Website doesn't respect Chrome's font size setting #558

Website doesn't respect Chrome's font size setting

Website doesn't respect Chrome's font size setting #558

Workflow file for this run

name: Build, test, deploy
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: "28"
gleam-version: "1.16.0"
rebar3-version: "3"
- run: gleam deps download
- run: gleam test
- run: gleam run
- run: gleam format --check src test
- uses: actions/upload-pages-artifact@v3
with:
path: ./dist
if: github.ref == 'refs/heads/main'
deploy:
if: github.ref == 'refs/heads/main'
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4