ci(gh-actions): remove npm run build from test command

It is run in CI action
This commit is contained in:
Ole-Martin Bratteng
2020-09-10 15:17:03 +02:00
parent 2905629d14
commit e2420596d0

View File

@@ -34,7 +34,7 @@
"dev": "start-storybook -p 6006",
"build": "rm -fr ./dist ./native && rollup -c && npm run test:size",
"deploy:docs": "storybook-to-ghpages",
"test": "npm run test:tsc && npm run test:unit && npm run build",
"test": "npm run test:tsc && npm run test:unit",
"test:unit": "npm run test:unit:web && npm run test:unit:native",
"test:unit:web": "jest -c jest.web.config.js",
"test:unit:native": "jest -c jest.native.config.js",