From cd4c09191f49edac89de557bf7abd71b56628c4e Mon Sep 17 00:00:00 2001 From: Sasha Date: Fri, 28 Jul 2023 12:37:22 +0200 Subject: [PATCH] remove test --- .github/workflows/ci.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 988a2d4..208036b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,17 +19,7 @@ jobs: node-version: ${{ env.NODE_JS }} - uses: bahmutov/npm-install@v1 - run: npm run lint - - run: npm run test:tsc - - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: ${{ env.NODE_JS }} - - uses: bahmutov/npm-install@v1 - - run: npm run test + - run: npm run type build: runs-on: ubuntu-latest @@ -43,7 +33,7 @@ jobs: release: runs-on: ubuntu-latest - needs: [check, test, build] + needs: [check, build] if: github.event_name == 'push' && github.ref == 'refs/heads/master' steps: - uses: actions/checkout@v2.3.3