From 6cf34813ecb47db4fe18f84180732b5f49d74b24 Mon Sep 17 00:00:00 2001 From: Tyler Romero Date: Mon, 2 Dec 2024 17:41:34 -0800 Subject: [PATCH] explicitly set npm version --- .github/workflows/cicd.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 8bd358dd..4c0e148a 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -94,14 +94,17 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ env.PYTHON_VERSION }} - - name: install poetry + - name: Install poetry uses: snok/install-poetry@v1 with: version: ${{ env.POETRY_VERSION }} - + - name: Setup npm + uses: actions/setup-node@v3 + with: + node-version: 22 + cache: npm - name: Install dependencies run: make install-sphinx-deps - - name: Build API documentation run: | make apidocs