Skip to content

Commit

Permalink
#22706 First commit GHA to run CLI tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolina committed Jul 3, 2023
1 parent 00da6a0 commit bf5584d
Show file tree
Hide file tree
Showing 11 changed files with 7,149 additions and 160 deletions.
4 changes: 4 additions & 0 deletions .github/actions/run-cli-tests/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dist/
lib/
node_modules/
src/@types/
17 changes: 17 additions & 0 deletions .github/actions/run-cli-tests/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"plugins": ["@typescript-eslint", "github", "jest"],
"extends": ["plugin:github/typescript"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
},
"env": {
"node": true,
"es6": true,
"jest/globals": true
}
}
3 changes: 3 additions & 0 deletions .github/actions/run-cli-tests/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist/
lib/
node_modules/
11 changes: 11 additions & 0 deletions .github/actions/run-cli-tests/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid",
"parser": "typescript"
}
Loading

0 comments on commit bf5584d

Please sign in to comment.