Skip to content

try not minifying

try not minifying #11

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
# Re-deploy anytime the main branch changes or the workflow is run manually
push:
branches: [main]
workflow_dispatch:
# Required permissions for GitHub Pages deployment
permissions:
contents: read # to checkout the code
pages: write # to deploy to Pages
id-token: write # to verify the deployment source
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Install dependencies
run: npm ci
- name: Build with Vite
run: npm run build
- name: Upload build output
uses: actions/upload-pages-artifact@v3
with:
path: ./dist
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4