From 075b578cc872f9d1f98069fcf9feabaffc6d3ae0 Mon Sep 17 00:00:00 2001 From: ksherlock Date: Sun, 17 Oct 2021 11:34:03 -0400 Subject: [PATCH] Update makefile.yml add yarn dependency. --- .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 c12d7b7..87cc94e 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -14,7 +14,10 @@ jobs: - uses: actions/checkout@v2 - name: Install dependencies - run: brew update && brew install esbuild + run: brew update && brew install esbuild yarn + + - name: Yarn + run: yarn install - name: Clean run: make clean