From 03221fd2acececb4c51143ad9b8f4f442004b454 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Mon, 5 Aug 2024 12:39:33 -0400 Subject: [PATCH] [CI] Don't check links under Windows (#2064) --- .github/workflows/test.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e94081f03..18c2711b3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -25,4 +25,7 @@ jobs: cache: npm cache-dependency-path: package.json - run: npm install --omit=optional - - run: npm run test:all + - if: runner.os != 'Windows' + run: npm run test:all + - if: runner.os == 'Windows' + run: npm run ci:prepare && npm run cd:docs build && npm run ci:post