We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2320866 commit fb76b70Copy full SHA for fb76b70
.github/workflows/nodejs.yml
@@ -16,7 +16,11 @@ jobs:
16
uses: actions/setup-node@v1
17
with:
18
node-version: ${{ matrix.node-version }}
19
- - run: npm install
+ - run: npm i -g npm
20
+ # Removing node_modules and package-lock.json is a workaround for some Rollup on Linux bug
21
+ - run: |
22
+ rm -rf node_modules package-lock.json
23
+ npm install
24
- run: npm test
25
env:
26
CI: true
docs/package.json
@@ -31,7 +31,7 @@
31
"@vitejs/plugin-vue": "^6.0.1",
32
"esno": "^4.8.0",
33
"fast-glob": "^3.3.3",
34
- "flexsearch": "^0.8.205",
+ "flexsearch": "^0.7.3",
35
"https-localhost": "^4.7.1",
36
"markdown-it": "^14.1.0",
37
"sass": "^1.89.2",
0 commit comments