updated action for build and smoke test

This commit is contained in:
Trent Jones
2020-02-29 13:06:39 -06:00
parent 4e192c30d8
commit 64d3415e33
2 changed files with 12 additions and 12 deletions

View File

@@ -5,13 +5,12 @@
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "rm -rf ./lib ./dist && npm run build && ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
"build": "npm run format-check && npm run lint && tsc",
"pack": "rm -rf ./lib ./dist && npm run build && ncc build"
},
"repository": {
"type": "git",