Compare commits

...

6 Commits

Author SHA1 Message Date
curquiza
5948bcf03f Fix CI 2025-12-21 12:01:41 +01:00
curquiza
9083f8031f Adapt JS CI in SDK tests 2025-12-21 12:01:41 +01:00
Clément Renault
9db2b16eed Merge pull request #6063 from meilisearch/bump-hannoy-with-fix
Bump hannoy to v0.1.2
2025-12-18 16:54:20 +00:00
Kerollmops
2ba3fafcc3 Bump hannoy to v0.1.2 2025-12-18 16:55:30 +01:00
Clément Renault
14db3dbcc4 Merge pull request #6062 from meilisearch/curquiza-patch-1
Make CI test titles more human friendly
2025-12-18 15:32:23 +00:00
Clémentine
a61ef955fc Make CI test title more human friendly 2025-12-18 14:58:06 +01:00
4 changed files with 15 additions and 13 deletions

View File

@@ -163,24 +163,26 @@ jobs:
- uses: actions/checkout@v5
with:
repository: meilisearch/meilisearch-js
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup node
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
cache: 'yarn'
cache: 'pnpm'
- name: Install dependencies
run: yarn --dev
run: pnpm install
- name: Run tests
run: yarn test
run: pnpm test
- name: Build project
run: yarn build
run: pnpm build
- name: Run ESM env
run: yarn test:env:esm
run: pnpm test:env:esm
- name: Run Node.js env
run: yarn test:env:nodejs
run: pnpm test:env:nodejs
- name: Run node typescript env
run: yarn test:env:node-ts
run: pnpm test:env:node-ts
- name: Run Browser env
run: yarn test:env:browser
run: pnpm test:env:browser
meilisearch-php-tests:
needs: define-docker-image

View File

@@ -15,7 +15,7 @@ env:
jobs:
test-linux:
name: Tests on Ubuntu
name: Tests on ${{ matrix.runner }} ${{ matrix.features }}
runs-on: ${{ matrix.runner }}
strategy:
matrix:

4
Cargo.lock generated
View File

@@ -2698,9 +2698,9 @@ dependencies = [
[[package]]
name = "hannoy"
version = "0.1.0-nested-rtxns"
version = "0.1.2-nested-rtxns"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be82bf3f2108ddc8885e3d306fcd7f4692066bfe26065ca8b42ba417f3c26dd1"
checksum = "533c952127a7e73448f26af313ac7b98012516561e48e953781cd6b30e573436"
dependencies = [
"bytemuck",
"byteorder",

View File

@@ -91,7 +91,7 @@ rhai = { version = "1.23.6", features = [
"sync",
] }
arroy = "0.6.4-nested-rtxns"
hannoy = { version = "0.1.0-nested-rtxns", features = ["arroy"] }
hannoy = { version = "0.1.2-nested-rtxns", features = ["arroy"] }
rand = "0.8.5"
tracing = "0.1.41"
ureq = { version = "2.12.1", features = ["json"] }