diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index be132eed..654bbcee 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -21,9 +21,17 @@ jobs: uses: actions/setup-go@v4 with: go-version: '1.21' - + + - name: Setup NodeJS + uses: actions/setup-node@v4 + with: + node-version: '20' + - name: Restic run: sudo apt install -y restic + + - name: Build WebUI + run: cd webui && npm install && npm run build - name: Build run: go build -v ./...