From e0f30e0a33cd3462838c0ad4cc4857b64f36f30e Mon Sep 17 00:00:00 2001 From: Willem Olding Date: Thu, 8 Aug 2024 16:23:57 -0400 Subject: [PATCH] switch to npm --- .github/workflows/deploy-docs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 2aee3b1..5672d21 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -24,11 +24,11 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16.x - cache: yarn + cache: 'npm' - name: Install dependencies - run: yarn install --frozen-lockfile --non-interactive + run: npm install --frozen-lockfile --non-interactive - name: Build - run: yarn build + run: npm build # 👆 Build steps - name: Setup Pages uses: actions/configure-pages@v3