Skip to content

Commit

Permalink
feat: add search, implement autosuggest endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
rkettelerij committed Dec 3, 2024
1 parent b9a94fa commit 0be3d2d
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,22 @@ jobs:
push: false
tags: gomagpie:local

- name: Start gomagpie test instance
run: |
docker run \
-v `pwd`/examples:/examples \
--rm --detach -p 8080:8080 \
--name gomagpie \
gomagpie:local start-service --config-file /examples/config.yaml
# E2E Test
- name: E2E Test => Cypress
uses: cypress-io/github-action@v6
with:
working-directory: ./tests
browser: chrome

- name: Stop gomagpie test instance
run: |
docker stop gomagpie
# TODO build end-to-end test
# - name: Start gomagpie test instance
# run: |
# docker run \
# -v `pwd`/examples:/examples \
# --rm --detach -p 8080:8080 \
# --name gomagpie \
# gomagpie:local start-service some_index --config-file /examples/config.yaml
#
# # E2E Test
# - name: E2E Test => Cypress
# uses: cypress-io/github-action@v6
# with:
# working-directory: ./tests
# browser: chrome
#
# - name: Stop gomagpie test instance
# run: |
# docker stop gomagpie

0 comments on commit 0be3d2d

Please sign in to comment.