Skip to content

Commit a092200

Browse files
committed
Init
0 parents  commit a092200

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

Diff for: .prettierrc.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
semi: false
2+
singleQuote: true
3+
arrowParens: "always"
4+
requirePragma: false
5+
trailingComma: "none"

Diff for: actions.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
name: 'TestAction'
2+
description: 'Test action experiment'
3+
runs:
4+
using: 'node12'
5+
main: 'index.js'

Diff for: index.js

Whitespace-only changes.

Diff for: package.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "test-action",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"author": "",
10+
"license": "ISC"
11+
}

0 commit comments

Comments
 (0)