From 5537ca41e0069725e98ef9ad59a2d4dbaa0bd8ae Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu, 03 Aug 2023 05:16:32 +0000
Subject: [PATCH] use autostash and pull
---
.github/workflows/ci.yaml | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 2bc953b..4a7a9f7 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -7,7 +7,10 @@
jobs:
build-and-test:
- runs-on: ubuntu-22.04
+ strategy:
+ matrix:
+ os: [windows-latest, macos-latest, ubuntu-latest]
+ runs-on: ${{ matrix.os }}
permissions:
contents: write
steps:
@@ -30,6 +33,9 @@
- run: npm ci
+ - name: Check types and style
+ run: npm run check
+
- name: Test
run: npm test
--
Gitblit v1.10.0