Skip to content

chore: bump package version to 1.0.0 #4

chore: bump package version to 1.0.0

chore: bump package version to 1.0.0 #4

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 install
- name: Minify CSS
run: npm run build
- name: Check output exists
run: test -f gallo.min.css && echo "βœ… gallo.min.css generated successfully"