Skip to content

Commit a3d13d3

Browse files
bidoubiwacurquiza
andauthored
Apply suggestions from code review
Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com>
1 parent 3614ead commit a3d13d3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/checkout@v1
5151
- name: Install dependencies
5252
run: yarn install
53-
- name: Run tests Vue Build
54-
run: yarn test:playground:vue
55-
- name: Run tests React Build
56-
run: yarn test:playground:react
53+
- name: Run Vue build
54+
run: yarn build:playground:vue
55+
- name: Run React build
56+
run: yarn build:playground:react

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"test:demo:browser": "yarn --cwd examples/express && yarn --cwd examples/express test",
1010
"test:demo:nodejs": "node examples/node/index.js",
1111
"test:demo:esm": "yarn --cwd examples/esm && yarn --cwd examples/esm start",
12-
"test:playground:vue": "yarn --cwd ./playgrounds/vue && yarn --cwd ./playgrounds/vue build",
13-
"test:playground:react": "yarn --cwd ./playgrounds/react && yarn --cwd ./playgrounds/react build",
12+
"build:playground:vue": "yarn --cwd ./playgrounds/vue && yarn --cwd ./playgrounds/vue build",
13+
"build:playground:react": "yarn --cwd ./playgrounds/react && yarn --cwd ./playgrounds/react build",
1414
"test:all": "yarn test && yarn test:demo",
1515
"lint": "eslint --ext .js,.ts,.tsx,.vue .",
1616
"lint:fix": "eslint --ext .js,.ts,.tsx,.vue --fix .",

0 commit comments

Comments
 (0)