Skip to content

fix: styling error

fix: styling error #14

Workflow file for this run

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_VERSION: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js with version v${{env.NODE_VERSION}}
uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
cache: 'npm'
- name: Configure vite.config.ts for github actions
shell: bash
run: (
sed -i 's/\/\/FOR_GITHUB_ACTION//g' vite.config.ts;
sed -i 's/GITHUB_REPOSITORY_NAME/${{github.event.repository.name}}/g' vite.config.ts
)
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build-only
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./dist
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4