using act for local debugging

Added act library for local debugging
Attempting to use exec argument escaping
This commit is contained in:
SamKirkland
2020-05-17 16:57:25 -05:00
parent b698c49eac
commit ae5262e007
6 changed files with 57 additions and 15 deletions

View File

@@ -8,10 +8,9 @@
"node": ">=12.0.0"
},
"scripts": {
"build:dev": "tsc",
"build:production": "ncc build src/main.ts -o dist",
"build:docker": "docker build --tag action .",
"run:docker": "docker run action --build-arg FTP_SERVER=example.com FTP_USERNAME=test@example.com FTP_PASSWORD=passwordExample"
"build": "ncc build src/main.ts -o dist --watch",
"build-docker": "docker build --tag action .",
"run-docker": "act --workflows ./debug/ --secret username=UserNameHere --secret password=PasswordHere"
},
"repository": {
"type": "git",