From 9fc20b6d31544a092f78ca76e048d94e27d1762a Mon Sep 17 00:00:00 2001 From: Milad Khajavi Date: Mon, 22 Jan 2024 07:04:31 +0330 Subject: [PATCH] Check website build process (#1249) --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb3129ee2..bc6739e3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,6 +79,11 @@ jobs: distribution: temurin java-version: 8 # ensure it works on 8 because we publish for 8 check-latest: true + - name: Setup NodeJs + uses: actions/setup-node@v4 + with: + node-version: 16.x + registry-url: https://registry.npmjs.org - name: Cache scala dependencies uses: coursier/cache-action@v6 - name: Install libuv @@ -89,6 +94,8 @@ jobs: swap-size-gb: 7 - name: Check that building packages works run: ./sbt +publishLocal + - name: Check website build process + run: sbt docs/clean; sbt docs/buildWebsite test: runs-on: ubuntu-22.04