Skip to content

Error from Typesense on Update of Model Instance which is not in index #3

Error from Typesense on Update of Model Instance which is not in index

Error from Typesense on Update of Model Instance which is not in index #3

Workflow file for this run

name: Run Package Tests
on:
pull_request:
branches: [master]
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
node-version: [16.x]
typesense-version: [0.24.0]
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Start Typesense
uses: jirevwe/typesense-github-action@v1.0.1
with:
typesense-version: ${{ matrix.typesense-version }}
typesense-port: 8108
typesense-api-key: xyz
- name: Composer Validate
run: composer validate
- name: Cache Composer Packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
~/.npm
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
- name: Install Dependencies
run: |
composer update --prefer-dist --no-interaction --no-progress
- name: Run Tests
run: vendor/bin/phpunit tests