From b2a5def6874fa16813bcc1bd773ef324f50f6b11 Mon Sep 17 00:00:00 2001 From: flakey5 <73616808+flakey5@users.noreply.github.com> Date: Thu, 11 Apr 2024 08:34:24 -0700 Subject: [PATCH] Run type tests in ci (#12) --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 459c5d2..3f3f1bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,3 +82,23 @@ jobs: - name: Run Tests run: npm run test:e2e + + type-tests: + name: Type Tests + runs-on: ubuntu-latest + needs: setup-node-modules + steps: + - name: Git Checkout + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'npm' + + - name: Install Dependencies + run: npm install + + - name: Run Tests + run: npm run test:types