From e075289bf79c059ae3ca0510d50c4797504c358c Mon Sep 17 00:00:00 2001 From: Alexander Sandor Date: Thu, 18 Jan 2024 08:44:21 +0100 Subject: [PATCH] ci: introduce ci build for docs --- .github/workflows/test-build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/test-build.yml diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml new file mode 100644 index 0000000..de50ee4 --- /dev/null +++ b/.github/workflows/test-build.yml @@ -0,0 +1,22 @@ +name: Docusaurus build +on: + push: + branches: + - main + pull_request: + branches: + - main +jobs: + test-build: + name: Test build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + cache: yarn + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Build + run: yarn build \ No newline at end of file