From d2f52549955ff7600cc5897e67806df4ebf85f91 Mon Sep 17 00:00:00 2001
From: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
Date: Wed, 23 Aug 2023 16:05:01 +0000
Subject: [PATCH] fix(esbuild): conflict with esbuild-sass-plugin (#402)

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

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 2bc953b..90abf67 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -3,11 +3,15 @@
 on:
   push:
     branches:
-      - v4-alpha # TODO: update
+      - v4
 
 jobs:
   build-and-test:
-    runs-on: ubuntu-22.04
+    if: ${{ github.repository == 'jackyzha0/quartz' }}
+    strategy:
+      matrix:
+        os: [windows-latest, macos-latest, ubuntu-latest]
+    runs-on: ${{ matrix.os }}
     permissions:
       contents: write
     steps:
@@ -30,6 +34,9 @@
 
       - run: npm ci
 
+      - name: Check types and style
+        run: npm run check
+
       - name: Test
         run: npm test
 

--
Gitblit v1.10.0