From 0b66397ee307487771587dd1eab6a0082a24b1ac Mon Sep 17 00:00:00 2001 From: Daniel Schiavini Date: Wed, 18 Sep 2024 16:41:53 +0200 Subject: [PATCH] Run tsc in pipeline --- .github/workflows/lint.yml | 1 + package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4169a71..87e8361 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,3 +13,4 @@ jobs: - run: npm install - run: npm run build - run: npm run lint + - run: npm run typescript diff --git a/package.json b/package.json index ac88c27..abb0e59 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ }, "scripts": { "build": "rm -rf lib && tsc -p tsconfig.build.json", + "typescript": "tsc", "lint": "eslint src --ext .ts" }, "devDependencies": {