Skip to content

Commit

Permalink
#1 update package.json for test
Browse files Browse the repository at this point in the history
  • Loading branch information
feelform committed Aug 30, 2021
1 parent 3b173b8 commit 2330483
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
21 changes: 21 additions & 0 deletions .github/actions/modules-updater-action/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Modules updater javascript action

This action prints "Hello World" or "Hello" + the name of a person to greet to the log.

## Inputs

## `who-to-greet`

**Required** The name of the person to greet. Default `"World"`.

## Outputs

## `time`

The time we greeted you.

## Example usage

uses: actions/hello-world-javascript-action@v1.1
with:
who-to-greet: 'Mona the Octocat'
10 changes: 7 additions & 3 deletions .github/actions/modules-updater-action/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
{
"name": "modules-updater-action",
"version": "1.0.0",
"description": "",
"description": "Updater for Pinpoint official website form pinpoint/docs/modules.md",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "jest",
"all": "npm run lint && npm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"jest": "^27.1.0"
}
}

0 comments on commit 2330483

Please sign in to comment.