Skip to content

chore: add github actions for ci and release #1

chore: add github actions for ci and release

chore: add github actions for ci and release #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Minify CSS
run: npm run build
- name: Check output exists
run: test -f gallo.min.css && echo "βœ… gallo.min.css generated successfully"