From b098c62ae539a7bcd1f490cba303c2a67b03e75b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Mon, 1 Jan 2024 14:07:14 +0100 Subject: [PATCH] Revert "Let's try to run worker lint/test on Windows CI" This reverts commit 64709ce9f025d8086538d793946f1b75f69dbf2a. --- .github/workflows/mediasoup-worker.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mediasoup-worker.yaml b/.github/workflows/mediasoup-worker.yaml index c026411a86..5405601601 100644 --- a/.github/workflows/mediasoup-worker.yaml +++ b/.github/workflows/mediasoup-worker.yaml @@ -70,13 +70,18 @@ jobs: # We need to install npm deps of worker/scripts/package.json. - name: npm ci --prefix worker/scripts run: npm ci --prefix worker/scripts --foreground-scripts + # TODO: Maybe fix this one day. + if: runner.os != 'Windows' - name: invoke -r worker lint run: invoke -r worker lint + # TODO: Maybe fix this one day. + if: runner.os != 'Windows' - name: invoke -r worker mediasoup-worker run: invoke -r worker mediasoup-worker - name: invoke -r worker test run: invoke -r worker test - + # TODO: Maybe fix this one day. + if: runner.os != 'Windows'