Skip to content

ci: remove GitHub Pages workflow #2

ci: remove GitHub Pages workflow

ci: remove GitHub Pages workflow #2

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install deps
run: npm ci || npm install
- name: Build CSS
run: npm run build
- name: Lint placeholder
run: echo "No linter configured yet"