From 3a89b5f45fdaec6257b2d93f9deddb03655b6aca Mon Sep 17 00:00:00 2001 From: Michael Hart Date: Tue, 23 Apr 2024 22:05:09 +1000 Subject: [PATCH] Only use ubuntu builds Not sure we really need windows and macOS builds? --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 198d183..dca07b2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,10 @@ jobs: strategy: matrix: node-version: [ 14.x, 16.x, 18.x, 20.x ] - os: [ windows-latest, ubuntu-latest, macOS-latest ] + # TODO: Do we really need to test on windows and macOS? + # We don't even touch the filesystem, let OS stuff + # os: [ windows-latest, ubuntu-latest, macOS-latest ] + os: [ ubuntu-latest ] steps: - name: Check out repo