From 496b86cbbab25457cbb9c4b77de8a7740a964a1d Mon Sep 17 00:00:00 2001 From: ksherlock Date: Sun, 17 Oct 2021 11:21:17 -0400 Subject: [PATCH] Update makefile.yml ubuntu apt doesn't have esbuild until 21.04 (as of 2021-10-17, ubuntu-latest is 20.04) --- .github/workflows/makefile.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 3495273..152c6c5 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -1,11 +1,14 @@ name: Makefile CI +# ubuntu apt doesn't have esbuild until 21.04 +# (as of 2021-10-17, ubuntu-latest is 20.04) + on: [push, pull_request] jobs: build: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - uses: actions/checkout@v2