Skip to content

refactor: use relative paths in css imports #26

refactor: use relative paths in css imports

refactor: use relative paths in css imports #26

Workflow file for this run

name: Build & Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies & build
run: |
npm ci
npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
publish_dir: ./_site
github_token: ${{ secrets.GITHUB_TOKEN }}