Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
201 changes: 0 additions & 201 deletions .circleci/config.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/Bug_report.md

This file was deleted.

16 changes: 0 additions & 16 deletions .github/ISSUE_TEMPLATE/Feature_request.md

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/docsearch_ui.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Enhance the search-UI
about: Everything related to the front end library
---

<!--
Thanks for participating in this project!
Please:
- make sure you are using the latest version of the library.
- do at least one GitHub search in current issues, maybe your question is already here
-->

**Do you want to request a _feature_ or report a _bug_?**

**What is the current behavior?**

**If the current behavior is a bug, please provide all the steps to reproduce and a minimal
[JSFiddle][3] example or a repository on GitHub that we can `npm install`
and `npm start`.**

**What is the expected behavior?**

[1]: https://typesense.org/docs/latest/guide/docsearch.html
[2]: https://github.com/typesense/typesense-docsearch-scraper
[3]: https://jsfiddle.net/
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/docsearch_user.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Issue with your own DocSearch implementation
about: Everything related to your own custom DocSearch index having a configuration
---

**Is your issue related to your own DocSearch implementation?**

- If it is a styling issue regarding your search-UI, you are in the good place, you can remove this section.
- If the issue is due to a wrong individual crawl:

Please [try to update your configuration][1]. Our [dedicated documentation welcomes any feedback][2]. If it is not solving it, please open an issue on the scraper repository.

If you are using our DocSearch on your own, please note that we will help you in the best effort possible.

- What is the dropdown version you are using?
- What is the scraper version you are using?
- Could you share us the configuration file you are using?

[1]: https://typesense.org/docs/latest/guide/docsearch.html
[2]: https://github.com/typesense/typesense-docsearch-scraper
20 changes: 20 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!--
Thanks for submitting a pull request!
Please provide enough information so that others can review your pull request.
-->

**Summary**

<!--
Explain the **motivation** for making this change.
What existing problem does the pull request solve?
Are there any linked issues?
-->

**Result**

<!--
Demonstrate the code is solid.
Example: The exact commands you ran and their output,
screenshots / videos if the pull request changes UI.
-->
6 changes: 0 additions & 6 deletions .github/logo.svg

This file was deleted.

Binary file removed .github/preview-dark.png
Binary file not shown.
Binary file removed .github/preview-light.png
Binary file not shown.
Binary file removed .github/screencast.gif
Binary file not shown.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on:
push:
branches:
- '**'
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn

- name: Enable Corepack
run: corepack enable

- name: Install
run: yarn install --immutable

- name: Build
run: yarn build

- name: Typecheck
run: yarn test:types

- name: Unit Tests
run: yarn test --run
19 changes: 0 additions & 19 deletions .github/workflows/renovate.yml

This file was deleted.

Loading
Loading