Skip to content

Commit aabd18f

Browse files
committed
👷 Define testing workflow
Defines a Github Action to run the Jest test suite
1 parent 0cea336 commit aabd18f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

‎.github/workflows/main.yml‎

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Run Tests
2+
on: push
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- name: Install modules
9+
run: yarn
10+
- name: Run tests
11+
run: yarn test

0 commit comments

Comments
 (0)