diff --git a/.github/workflows/code-qa.yml b/.github/workflows/code-qa.yml index 5a88244a2..44a70106a 100644 --- a/.github/workflows/code-qa.yml +++ b/.github/workflows/code-qa.yml @@ -25,3 +25,21 @@ jobs: - name: Compile TypeScript run: npm run compile + + unit-test: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '18' + cache: 'npm' + + - name: Install dependencies + run: npm run install:all + + - name: Run unit tests + run: npx jest \ No newline at end of file