From 025711fd87e004788d39006ebfd60e387796eda2 Mon Sep 17 00:00:00 2001 From: Jack Devey Date: Wed, 3 Nov 2021 19:03:29 +0000 Subject: [PATCH] Fix CI issue --- .github/workflows/typescript.yml | 2 +- package.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/typescript.yml b/.github/workflows/typescript.yml index db34b74..520b1b2 100644 --- a/.github/workflows/typescript.yml +++ b/.github/workflows/typescript.yml @@ -12,4 +12,4 @@ jobs: node-version: 17 cache: 'npm' - run: npm install - - run: npm run start + - run: npm run build diff --git a/package.json b/package.json index cb93bb0..42d7980 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,8 @@ "node": "17.x" }, "scripts": { - "start": "tsc --outDir build & node ./build/index.js" + "start": "tsc --outDir build & node build/index.js", + "build": "tsc --outDir build" }, "author": "BanDev", "license": "GPL-3.0",