Skip to content

feat(core): more css variable to use #145

feat(core): more css variable to use

feat(core): more css variable to use #145

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build Github Pages
on:
push:
branches:
- 'master'
jobs:
pages:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Build site
env:
BASE: /shikitor/
run: pnpm --filter shikitor-playground build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: playground/dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}