Skip to content

Commit 37f94ed

Browse files
committed
Run Unit Tests in CI
Configure GitHub JS QA action to run jest tests
1 parent e75b533 commit 37f94ed

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/js-qa.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515
build:
1616
runs-on: ubuntu-latest
17-
if: "!github.event.pull_request.draft"
17+
if: '!github.event.pull_request.draft'
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4
@@ -30,3 +30,6 @@ jobs:
3030

3131
- name: Linting JavaScript
3232
run: yarn lint
33+
34+
- name: Testing JavaScript
35+
run: yarn test

0 commit comments

Comments
 (0)