From 67a4cff40541eb9d57ec9db3a01858477b40b363 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Fri, 8 Jul 2022 17:54:33 +0530 Subject: [PATCH] Install deps before updating monaco --- .github/workflows/update-monaco-editor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-monaco-editor.yml b/.github/workflows/update-monaco-editor.yml index 6d36aa63..cb1586e6 100644 --- a/.github/workflows/update-monaco-editor.yml +++ b/.github/workflows/update-monaco-editor.yml @@ -13,7 +13,10 @@ jobs: - uses: actions/setup-node@v2 with: node-version: 18 - - run: node ./bin/update-monaco.js + - name: Update monaco version + run: | + yarn install + node ./bin/update-monaco.js - name: Commit changes uses: EndBug/add-and-commit@v9 with: