From 915319b04d4878c9c1418921308122eebc7a55e5 Mon Sep 17 00:00:00 2001 From: Anes Belfodil Date: Mon, 28 Sep 2020 12:18:46 -0400 Subject: [PATCH] Replace borales/actions-yarn with actions/setup-node --- .github/workflows/web.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index 5ce5d866..b23aadff 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -13,14 +13,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 - uses: abelfodil/protoc-action@v1 - - uses: borales/actions-yarn@v2.3.0 - with: - cmd: --cwd web install - run: protoc --proto_path=protos protos/* --js_out=web/src/protos - - uses: borales/actions-yarn@v2.3.0 - with: - cmd: --cwd web build + - run: yarn --cwd web install + - run: yarn --cwd web build - uses: actions/upload-artifact@v2 with: name: Webapp