diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 427ad6a4..7367014f 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,13 +12,25 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: 16 - - name: Set up Go + - name: Build React + run: | + npm install --global yarn + cd net/web + 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