Skip to content

Update body styling in index.css to use consistent margins and font f… #90

Update body styling in index.css to use consistent margins and font f…

Update body styling in index.css to use consistent margins and font f… #90

Workflow file for this run

on:
push:
branches: ["master"]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 23.x
cache: npm
- run: npm ci
- run: npm run build
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: ./dist
- id: deployment
uses: actions/deploy-pages@v4