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 | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index a1c2c58..8960865 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -7,7 +7,7 @@
jobs:
build-and-test:
- runs-on: ubuntu-22.04
+ runs-on: [windows-latest, macos-13, ubuntu-22.04]
permissions:
contents: write
steps:
@@ -29,8 +29,9 @@
${{ runner.os }}-node-
- run: npm ci
+
- name: Check types and style
- run: npm check
+ run: npm run check
- name: Test
run: npm test
--
Gitblit v1.10.0