From 5e1fc7f258990a789a0b22bab54894d7223f45d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=BCbleitner?= Date: Sat, 21 Sep 2019 16:22:17 +0200 Subject: [PATCH] run tests with drone --- .drone.yml | 5 +++++ index.ts | 7 ------- 2 files changed, 5 insertions(+), 7 deletions(-) delete mode 100644 index.ts diff --git a/.drone.yml b/.drone.yml index 5f7726e..2e995b3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,6 +12,11 @@ steps: commands: - npm run build +- name: npm run test + image: node:12 + commands: + - npm run test + - name: npm publish image: plugins/npm settings: diff --git a/index.ts b/index.ts deleted file mode 100644 index d47b585..0000000 --- a/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -import * as Back from './src/backend/RPCSocketServer'; -import * as Front from './src/frontend/RPCSocket'; - -export { - Back as Backend, - Front as Frontend -} \ No newline at end of file