Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update dev dependencies, add ESLint
  • Loading branch information
Thomas Hughes committed Sep 20, 2019
1 parent d0222fc commit af26087
Show file tree
Hide file tree
Showing 4 changed files with 6,366 additions and 152 deletions.
24 changes: 24 additions & 0 deletions .eslintrc
@@ -0,0 +1,24 @@
{
"extends": [
"airbnb",
"prettier"
],
"env": {
"es6": true,
"node": true,
"jest": true
},
"rules": {
"prettier/prettier": [
"error",
{
"trailingComma": "none",
"singleQuote": true,
"printWidth": 120
}
]
},
"plugins": [
"prettier"
]
}
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# GitHub Action -- Releases API
# GitHub Action - Releases API
This GitHub Action (written in JavaScript) wraps the [GitHub Release API](https://developer.github.com/v3/repos/releases/), specifically the [Create a Release](https://developer.github.com/v3/repos/releases/#create-a-release) endpoint, to allow you to leverage GitHub Actions to create releases.

<a href="https://github.com/actions/create-release"><img alt="GitHub Actions status" src="https://github.com/actions/create-release/workflows/Create%20Release/badge.svg"></a>
Expand Down

0 comments on commit af26087

Please sign in to comment.