fix sha error in npm (#236)

Currently getting a `npm ERR! code EINTEGRITY` on merge, need to fix
asap.


https://stackoverflow.com/questions/75905223/github-action-npm-install-give-code-eintegrity-integrity-checksum-failed
This commit is contained in:
Tevin Wang
2023-06-29 09:31:23 -07:00
committed by GitHub
parent b731a6aed9
commit 39479dcf8e
3 changed files with 3 additions and 842 deletions

View File

@@ -67,8 +67,6 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: docs/test/package-lock.json
- name: Install dependecies needed for ubuntu
if: ${{ matrix.os == 'ubuntu-22.04' }}
run: |
@@ -76,8 +74,7 @@ jobs:
- name: Install node dependencies
run: |
cd docs/test
npm cache clean --force
npm ci
npm install
- name: Rust cache
uses: swatinem/rust-cache@v2
- name: Install LanceDB