From f9d0c1c94f83e94896537ee0f712900254218f9b Mon Sep 17 00:00:00 2001 From: flakey5 <73616808+flakey5@users.noreply.github.com> Date: Wed, 10 Apr 2024 20:34:20 -0700 Subject: [PATCH] Run type tests in ci --- .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