mirror of https://github.com/actions/toolkit
Remove ESLint (still not compatible enough with TypeScript tooling)
parent
e3911754c1
commit
d90e9d7582
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"extends": ["plugin:github/es6"],
|
||||
"parser": "@typescript-eslint/parser",
|
||||
"plugins": ["jest"],
|
||||
"env": {
|
||||
"node": true,
|
||||
"es6": true,
|
||||
"jest/globals": true
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
workflow "CI" {
|
||||
on = "push"
|
||||
resolves = ["Format", "Lint", "Test"]
|
||||
resolves = ["Format", "Test"]
|
||||
}
|
||||
|
||||
action "Dependencies" {
|
||||
|
@ -14,12 +14,6 @@ action "Format" {
|
|||
args = "run format"
|
||||
}
|
||||
|
||||
action "Lint" {
|
||||
needs = "Dependencies"
|
||||
uses = "actions/npm@v2.0.0"
|
||||
args = "run lint"
|
||||
}
|
||||
|
||||
action "Test" {
|
||||
needs = "Dependencies"
|
||||
uses = "actions/npm@v2.0.0"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -9,10 +9,7 @@
|
|||
"devDependencies": {
|
||||
"@types/jest": "^24.0.11",
|
||||
"@types/node": "^11.13.5",
|
||||
"@typescript-eslint/parser": "^1.6.0",
|
||||
"eslint": "^5.16.0",
|
||||
"eslint-plugin-github": "^2.0.0",
|
||||
"eslint-plugin-jest": "^22.4.1",
|
||||
"@types/signale": "^1.2.1",
|
||||
"jest": "^24.7.1",
|
||||
"jest-circus": "^24.7.1",
|
||||
"lerna": "^3.13.3",
|
||||
|
|
Loading…
Reference in New Issue