From 49c962778e25c5a46886f1b1ead6ffcbc826a344 Mon Sep 17 00:00:00 2001 From: Pierre Balzack <96387156+balzack@users.noreply.github.com> Date: Thu, 1 Sep 2022 21:14:50 -0700 Subject: [PATCH] Update go.yml --- .github/workflows/go.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b637a4c6..f38cafc3 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,18 +14,23 @@ jobs: - uses: actions/checkout@v3 - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Build React run: | - apt-get install npm - npm install --global yarn - npm install -g n - n stable + cd net/web + npm install yarn + yarn install + yarn build - name: Setup Go uses: actions/setup-go@v3 with: go-version: 1.17.5 - - name: Build + - name: Build Go run: | cd net/server go build databag