Skip to content

Commit 6c8dafa

Browse files
committed
🎉 chore: initial commit
0 parents  commit 6c8dafa

File tree

5 files changed

+65
-0
lines changed

5 files changed

+65
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
.idea
3+
.vscode
4+
coverage
5+
yarn.lock

.prettierrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"tabWidth": 2,
3+
"semi": false,
4+
"singleQuote": true,
5+
"jsxBracketSameLine": true
6+
}

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# @lint-md/github-action
2+
3+
TODO

action.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: '@lint-md/github-action'
2+
3+
description: 'lint-md service for github action'
4+
5+
inputs:
6+
configFile:
7+
description: 'Lint-md configuration file path.'
8+
required: false
9+
default: '.lintmdrc'
10+
failOnWarnings:
11+
description: 'Whether you want to fail on warnings or not.'
12+
default: "false"
13+
required: false
14+
files:
15+
description: 'You can pass in multiple directories to be checked, separated by spaces.'
16+
required: false
17+
default: './'
18+
19+
runs:
20+
using: node12
21+
main: './dist/index.js'

package.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "@lint-md/github-action",
3+
"version": "0.0.1",
4+
"description": "",
5+
"main": "src/index.js",
6+
"scripts": {
7+
"build": "webpack",
8+
"test": "jest --coverage"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/yuzhanglong/hello-world-javascript-action.git"
13+
},
14+
"keywords": [],
15+
"author": "",
16+
"license": "MIT",
17+
"bugs": {
18+
"url": "https://github.com/yuzhanglong/hello-world-javascript-action/issues"
19+
},
20+
"homepage": "https://github.com/yuzhanglong/hello-world-javascript-action#readme",
21+
"dependencies": {
22+
"@actions/core": "^1.2.6",
23+
"@actions/github": "^4.0.0",
24+
"@lint-md/cli": "^0.1.3",
25+
"babel-polyfill": "^6.26.0",
26+
"jest": "^26.6.3",
27+
"webpack": "^5.25.1",
28+
"webpack-cli": "^4.5.0"
29+
}
30+
}

0 commit comments

Comments
 (0)