diff options
| author | Keith Ballinger <[email protected]> | 2025-06-03 19:52:53 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-03 19:52:53 -0700 |
| commit | 7108921691e8d225bfcb6b355040c2ac924d12b2 (patch) | |
| tree | d22a94146ad9abb6f5962f329601883ff91a0c74 | |
| parent | 80a445c7ae691798f090591b9fd6539a6ac30e9e (diff) | |
fix Cannot find module @rollup/rollup-linux-x64-gnu error (#736)
| -rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff7019d0..6bcf8909 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,6 +84,13 @@ jobs: # upload paths were relative to the workspace root. # Example: if uploaded `packages/cli/dist`, it will be at `./packages/cli/dist`. + - name: Clean node_modules and lockfile + run: | + rm -rf node_modules package-lock.json + + - name: Reinstall dependencies + run: npm install + - name: Install dependencies for testing run: npm ci # Install fresh dependencies using the downloaded package-lock.json |
