|
60 | 60 | - name: Run Ganache with Barge |
61 | 61 | working-directory: ${{ github.workspace }}/barge |
62 | 62 | 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 & |
64 | 64 |
|
65 | 65 | - name: Install deps & build |
66 | 66 | run: npm ci && npm run build:metadata |
@@ -150,7 +150,7 @@ jobs: |
150 | 150 | - name: Run Barge |
151 | 151 | working-directory: ${{ github.workspace }}/barge |
152 | 152 | 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 & |
154 | 154 |
|
155 | 155 | - name: Install deps & build |
156 | 156 | run: npm ci && npm run build:metadata |
@@ -222,21 +222,21 @@ jobs: |
222 | 222 | fail-fast: false |
223 | 223 | matrix: |
224 | 224 | os: [ubuntu-latest, macos-latest, windows-latest] |
225 | | - node_endpoint: ["22", "20"] |
| 225 | + node: ["22", "20"] |
226 | 226 |
|
227 | 227 | steps: |
228 | 228 | - uses: actions/checkout@v3 |
229 | 229 | - uses: actions/setup-node@v4 |
230 | 230 | with: |
231 | | - node-version: ${{ matrix.node_endpoint }} |
| 231 | + node-version: ${{ matrix.node }} |
232 | 232 | - name: Cache node_modules |
233 | 233 | uses: actions/cache@v4 |
234 | 234 | env: |
235 | 235 | cache-name: cache-node-modules |
236 | 236 | with: |
237 | 237 | 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 }}- |
240 | 240 | - run: npm ci |
241 | 241 | - run: npm run build |
242 | 242 | - run: npm run doc:json |
|
0 commit comments