From 9faf4e390fe7b18bf1f758edc8eabe623ff45da8 Mon Sep 17 00:00:00 2001 From: Andrew Chou Date: Mon, 13 Jan 2025 18:05:08 -0500 Subject: [PATCH] simplify test command setup --- .github/workflows/ci.yml | 5 ++++- docs/CONTRIBUTING.md | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5194336..5f4da4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,4 +39,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - run: npm ci - - run: npm run test + - name: Run type checks + run: npm run types + - name: Run tests + run: npm run test diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 45a26c7..e895139 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -12,7 +12,7 @@ npm install ## Running tests -Unit tests can be run using `npm test` (or `npm t`). +Tests can be run using `npm test` (or `npm t`). ## Releases