Skip to content

Commit ff01084

Browse files
committed
Try and fix tests
1 parent 2879369 commit ff01084

File tree

13 files changed

+22
-21
lines changed

13 files changed

+22
-21
lines changed

.github/workflows/meilisearch-prototype-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,5 @@ jobs:
136136
run: yarn install
137137
- name: Run tests
138138
run: yarn test
139-
- name: Build inter-dependencies between packages
140-
run: yarn build-inter-dependencies
141139
- name: Build project
142140
run: yarn build

.github/workflows/pre-release-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,6 @@ jobs:
134134
node-version: ${{ matrix.node }}
135135
- name: Install dependencies
136136
run: yarn install
137-
- name: Build inter-dependencies between packages
138-
run: yarn build-inter-dependencies
139137
- name: Run tests
140138
run: yarn test
141139
- name: Build project

.github/workflows/tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,6 @@ jobs:
145145
node-version: ${{ matrix.node }}
146146
- name: Install dependencies
147147
run: yarn install
148-
- name: Build inter-dependencies between packages
149-
run: yarn build-inter-dependencies
150148
- name: Run tests
151149
run: yarn test
152150
- name: Build all the playgrounds and the packages

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"test:e2e:watch": "turbo run test:e2e:watch",
2424
"lint": "turbo lint",
2525
"lint:fix": "turbo lint:fix",
26-
"build-inter-dependencies": "tsc -b packages/instant-meilisearch",
2726
"build": "turbo run build",
2827
"test": "vitest run",
2928
"test:watch": "vitest",

playgrounds/autocomplete/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"version": "0.0.0",
44
"private": true,
55
"description": "Javascript playground for autocomplete",
6+
"type": "module",
67
"scripts": {
7-
"predev": "node setup.mjs",
8+
"predev": "node setup.js",
89
"dev": "vite",
9-
"build": "vite build",
10-
"setup": "node setup.mjs",
10+
"setup": "node setup.js",
1111
"lint": "eslint --ext .jsx,.js .",
1212
"lint:fix": "eslint --ext .jsx,.js --fix .",
1313
"test:e2e": "concurrently --kill-others -s first \"yarn dev\" \"cypress run --env playground=local\"",
File renamed without changes.

playgrounds/geo-javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"version": "0.0.0",
44
"private": true,
55
"description": "Instant-meilisearch playground focussed on GeoSearch written with vanilla javascript",
6+
"type": "module",
67
"scripts": {
78
"dev": "vite",
8-
"build": "vite build",
99
"lint": "eslint --ext .js .",
1010
"lint:fix": "eslint --ext .js --fix ."
1111
},

playgrounds/javascript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"version": "0.0.0",
44
"private": true,
55
"description": "Instant-meilisearch playground written with vanilla javascript",
6+
"type": "module",
67
"scripts": {
7-
"dev": "parcel serve index.html --open --port 2222",
8-
"build": "parcel build index.html",
8+
"dev": "vite",
99
"lint": "eslint --ext .js ."
1010
},
1111
"devDependencies": {

playgrounds/local-react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"version": "0.0.0",
44
"private": true,
55
"description": "React playground for instant-meilisearch",
6+
"type": "module",
67
"scripts": {
7-
"predev": "node setup.mjs",
8+
"predev": "node setup.js",
89
"dev": "vite",
9-
"build": "vite build",
10-
"setup": "node setup.mjs",
10+
"setup": "node setup.js",
1111
"lint": "eslint --ext .jsx,.js .",
1212
"lint:fix": "eslint --ext .jsx,.js --fix .",
1313
"test:e2e": "concurrently --kill-others -s first \"yarn dev\" \"cypress run --env playground=local\"",
File renamed without changes.

0 commit comments

Comments
 (0)