From 14eb0a3307a6b0d88fc5c8fd1eb4338b5dc7d821 Mon Sep 17 00:00:00 2001 From: apotdevin Date: Wed, 8 Dec 2021 00:55:20 -0500 Subject: [PATCH] ci: remove tsc --- .github/workflows/nodejs.yml | 5 ++--- package.json | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 50ab62d6..e7fb5585 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,4 +1,4 @@ -name: Test and Build +name: Build on: push: @@ -25,7 +25,6 @@ jobs: key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }} - name: Install deps run: npm ci - - name: Test and build + - name: Build run: | - npm run tsc npm run build diff --git a/package.json b/package.json index dea7af98..a97b2548 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,6 @@ "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "lint-staged": "lint-staged", "generate": "graphql-codegen --config codegen.yml", - "tsc": "tsc", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage",