-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5dbba9e
commit 50cf6c2
Showing
827 changed files
with
142,905 additions
and
119,329 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: cimg/node:lts | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
- run: | ||
name: Install modules | ||
command: yarn install | ||
- save_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
paths: | ||
- node_modules | ||
- run: | ||
name: Test | ||
command: npm test | ||
- store_artifacts: | ||
path: test-results.xml | ||
build: | ||
docker: | ||
- image: cimg/node:lts | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
- run: | ||
name: Install modules | ||
command: yarn install | ||
- save_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
paths: | ||
- node_modules | ||
- run: | ||
name: Test | ||
command: npm test | ||
- store_artifacts: | ||
path: test-results.xml | ||
|
||
######################################################### | ||
## Disables Config (Comment/Remove to re-enable CircleCI) | ||
######################################################### | ||
workflows: | ||
version: 2 | ||
build-and-test: | ||
jobs: | ||
- build: | ||
filters: | ||
branches: | ||
ignore: /.*/ | ||
version: 2 | ||
build-and-test: | ||
jobs: | ||
- build: | ||
filters: | ||
branches: | ||
ignore: /.*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:mocha/recommended", | ||
"eslint-config-prettier" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["mocha"], | ||
"rules": { | ||
"mocha/max-top-level-suites": ["warn", { "limit": 5 }], | ||
"mocha/no-setup-in-describe": "warn", | ||
"no-loss-of-precision": "warn" | ||
} | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:mocha/recommended", | ||
"eslint-config-prettier" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["mocha"], | ||
"rules": { | ||
"mocha/max-top-level-suites": ["warn", { "limit": 5 }], | ||
"mocha/no-setup-in-describe": "warn", | ||
"no-loss-of-precision": "warn" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
process.env.TZ = 'UTC'; | ||
|
||
module.exports = { | ||
bail: true, | ||
timeout: 20000, | ||
exit: true, | ||
require: [ | ||
'ts-node/register', | ||
'mock-local-storage', | ||
'jsdom-global/register' | ||
] | ||
bail: true, | ||
timeout: 20000, | ||
exit: true, | ||
require: [ | ||
'ts-node/register', | ||
'mock-local-storage', | ||
'jsdom-global/register', | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"singleQuote": true, | ||
"tabWidth": 4 | ||
"singleQuote": true, | ||
"tabWidth": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.