Compare commits

..

2 Commits

Author SHA1 Message Date
curquiza
367a3cdac9 Fix CI 2025-12-11 15:25:41 +01:00
curquiza
11dd0fd432 Adapt JS CI in SDK tests 2025-12-11 15:20:32 +01:00

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