Skip to content

Commit db639ad

Browse files
committed
start without typesense
1 parent 4308bda commit db639ad

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Run Ganache with Barge
6161
working-directory: ${{ github.workspace }}/barge
6262
run: |
63-
bash -x start_ocean.sh --with-typesense 2>&1 > start_ocean.log &
63+
bash -x start_ocean.sh 2>&1 > start_ocean.log &
6464
6565
- name: Install deps & build
6666
run: npm ci && npm run build:metadata
@@ -150,7 +150,7 @@ jobs:
150150
- name: Run Barge
151151
working-directory: ${{ github.workspace }}/barge
152152
run: |
153-
bash -x start_ocean.sh --with-typesense 2>&1 > start-node.log &
153+
bash -x start_ocean.sh 2>&1 > start-node.log &
154154
155155
- name: Install deps & build
156156
run: npm ci && npm run build:metadata
@@ -222,21 +222,21 @@ jobs:
222222
fail-fast: false
223223
matrix:
224224
os: [ubuntu-latest, macos-latest, windows-latest]
225-
node_endpoint: ["22", "20"]
225+
node: ["22", "20"]
226226

227227
steps:
228228
- uses: actions/checkout@v3
229229
- uses: actions/setup-node@v4
230230
with:
231-
node-version: ${{ matrix.node_endpoint }}
231+
node-version: ${{ matrix.node }}
232232
- name: Cache node_modules
233233
uses: actions/cache@v4
234234
env:
235235
cache-name: cache-node-modules
236236
with:
237237
path: ~/.npm
238-
key: ${{ runner.os }}-${{ matrix.node_endpoint }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
239-
restore-keys: ${{ runner.os }}-${{ matrix.node_endpoint }}-build-${{ env.cache-name }}-
238+
key: ${{ runner.os }}-${{ matrix.node }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
239+
restore-keys: ${{ runner.os }}-${{ matrix.node }}-build-${{ env.cache-name }}-
240240
- run: npm ci
241241
- run: npm run build
242242
- run: npm run doc:json

0 commit comments

Comments
 (0)