Skip to content

Commit

Permalink
Run type tests in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
flakey5 committed Apr 11, 2024
1 parent b9cddee commit f9d0c1c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f9d0c1c

Please sign in to comment.