From fc90f6bd7ea8f879d5087799b74781e718e60f48 Mon Sep 17 00:00:00 2001 From: Corey Butler Date: Wed, 1 Apr 2020 12:46:31 -0500 Subject: [PATCH] Add testable package.json file --- action.yml | 2 -- package.json | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 package.json diff --git a/action.yml b/action.yml index 5636ec5..a9bdf25 100644 --- a/action.yml +++ b/action.yml @@ -45,5 +45,3 @@ outputs: runs: using: 'docker' image: 'Dockerfile' - args: - - "npm start" diff --git a/package.json b/package.json new file mode 100644 index 0000000..4b61073 --- /dev/null +++ b/package.json @@ -0,0 +1,21 @@ +{ + "name": "action-autotag-test", + "version": "1.0.0", + "description": "This is a test file for the action.", + "main": "index.js", + "dependencies": {}, + "devDependencies": {}, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ButlerLogic/action-autotag.git" + }, + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/ButlerLogic/action-autotag/issues" + }, + "homepage": "https://github.com/ButlerLogic/action-autotag#readme" +}