Skip to content

minor copy update

minor copy update #169

Workflow file for this run

name: Build Check
on:
push
jobs:
build-css:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build CSS
run: pnpm build
- name: Check if CSS is up to date
run: |
if ! git diff --quiet index.css; then
echo "The index.css has changes after running the build command. Please commit those changes."
exit 1
fi