diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-03 10:02:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-03 10:02:37 +0000 |
commit | 3c7230c3036e8bb2b2e9a752be9b0ef4a0a7349d (patch) | |
tree | 8c1bb889656f06ee6bc018ae053cf35e12613dfb /.circleci/config.yml | |
parent | feac179504a9276ad2e841702bf3fc1d89251679 (diff) | |
parent | 5205da572980f24d1632d0fa7df85124322ca960 (diff) |
Merge pull request #684 from ueokande/jsonschema-settings
Parse settings by JSON Schema
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index fec66bd..8700c29 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -63,13 +63,6 @@ jobs: - checkout - setup_npm - run: npm run lint - - run: - # NOTE: Karma loads ts-node automatically and treats karma.conf.js as a TypeScript. - # Karma does not starts by karma.conf.js transpile failure, and this hack removes - # ts-node module from the local before test. - # See: https://github.com/karma-runner/karma/issues/3329 - name: Remove node-ts from node_modules - command: mv node_modules/ts-node node_modules/ts-node.orig - run: npm test - run: npm run package |