Skip to content

Scale font size on small screens #15

Scale font size on small screens

Scale font size on small screens #15

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: yarn && yarn build
- uses: actions/upload-pages-artifact@v3
with:
path: ./dist
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- uses: actions/deploy-pages@v4