From fbf8f2bef47799f8ecc7c9bd799b455f841b6619 Mon Sep 17 00:00:00 2001 From: Jeff Lee Date: Thu, 22 Feb 2024 17:09:13 -0800 Subject: [PATCH] simplify --- .github/workflows/ci.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3aaa78..a001920 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,14 +16,10 @@ jobs: node-version: 18 cache: 'npm' - run: npm ci - - name: Typecheck - run: npm run typecheck - - name: Lint code - run: npm run lint - - name: Lint docs - run: npm run lint:docs - - name: Tests - run: npm run test + - run: npm run typecheck + - run: npm run lint + - run: npm run lint:docs + - run: npm run test - name: Check that commit contains build artifacts run: | npm run build