Skip to content

Commit

Permalink
Enabling unit tests for CI (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
stea9499 authored Dec 7, 2024
1 parent 733e236 commit 0ac3dd5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/code-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0ac3dd5

Please sign in to comment.