From 7d36ea5925a18372d956ee73f7c31f3885c43b48 Mon Sep 17 00:00:00 2001 From: trev Date: Wed, 16 Apr 2025 02:51:36 -0400 Subject: [PATCH] fix: weird npm cli bug --- .github/workflows/lint.yaml | 2 +- .github/workflows/update.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index c91fd78..679626a 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -28,7 +28,7 @@ jobs: - name: Install NPM Packages working-directory: ./client - run: npm ci + run: npm i && npm ci # https://github.com/npm/cli/issues/6787#issuecomment-2128344748 - uses: nicknovitski/nix-develop@v1 diff --git a/.github/workflows/update.yaml b/.github/workflows/update.yaml index b03a7ac..01e0ef9 100644 --- a/.github/workflows/update.yaml +++ b/.github/workflows/update.yaml @@ -24,7 +24,7 @@ jobs: - name: Install NPM Packages working-directory: ./client - run: npm ci + run: npm i && npm ci # https://github.com/npm/cli/issues/6787#issuecomment-2128344748 - name: Update run: nix develop --command trevstack-update