Skip to content

Commit

Permalink
Merge pull request #1 from ingameltd/refunds
Browse files Browse the repository at this point in the history
Refunds
  • Loading branch information
kasvith authored Apr 12, 2021
2 parents d6a053b + bafc5f7 commit 3c14e57
Show file tree
Hide file tree
Showing 27 changed files with 1,552 additions and 136 deletions.
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
dist
docs
.vscode
.github
src/test.ts
13 changes: 13 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
]
}
3 changes: 2 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [10.x, 12.x, 13.x, 14.x, 15.x]

steps:
- uses: actions/checkout@v1
Expand All @@ -19,6 +19,7 @@ jobs:
- name: npm install, build, and test
run: |
npm ci
npm run lint
npm run build --if-present
npm test
env:
Expand Down
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4,
"endOfLine": "auto"
}
Loading

0 comments on commit 3c14e57

Please sign in to comment.