From 429f331c212d598b0d7ff44f20f75cf007bcf32b Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu, 03 Aug 2023 03:53:13 +0000
Subject: [PATCH] make ci also run on windows, re-add css minification

---
 .github/workflows/ci.yaml |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index f179eaa..8960865 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -1,4 +1,4 @@
-name: Build and Test 
+name: Build and Test
 
 on:
   push:
@@ -6,8 +6,8 @@
       - v4-alpha # TODO: update
 
 jobs:
-  deploy:
-    runs-on: ubuntu-22.04
+  build-and-test:
+    runs-on: [windows-latest, macos-13, ubuntu-22.04]
     permissions:
       contents: write
     steps:
@@ -30,8 +30,11 @@
 
       - run: npm ci
 
+      - name: Check types and style
+        run: npm run check
+
       - name: Test
         run: npm test
 
       - name: Ensure Quartz builds
-        run: npx quartz build 
+        run: npx quartz build

--
Gitblit v1.10.0