Skip to content

Commit 0c851bb

Browse files
committed
test: fix test command in publish workflow
1 parent 81ca0a7 commit 0c851bb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/npmpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
npm i -g yarn
2626
yarn install
27-
yarn test
27+
yarn test:unit
2828
yarn build
2929
env:
3030
CI: true

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"name": "imagekitio-vue",
33
"version": "0.1.0",
44
"scripts": {
5-
"build:lib": "vue-cli-service build --target lib src/index.js",
6-
"build": "vue-cli-service lint --fix; npm run build:lib",
7-
"serve": "vue-cli-service serve",
8-
"lint": "vue-cli-service lint",
9-
"test:unit": "vue-cli-service test:unit -u",
5+
"build:lib": "./node_modules/.bin/vue-cli-service build --target lib src/index.js",
6+
"build": "./node_modules/.bin/vue-cli-service lint --fix; npm run build:lib",
7+
"serve": "./node_modules/.bin/vue-cli-service serve",
8+
"lint": "./node_modules/.bin/vue-cli-service lint",
9+
"test:unit": "./node_modules/.bin/vue-cli-service test:unit -u",
1010
"storybook": "start-storybook -p 6006",
1111
"build-storybook": "build-storybook"
1212
},

0 commit comments

Comments
 (0)