Skip to content

Commit e512208

Browse files
committed
feat: add test job to GitHub Actions workflow for running tests
1 parent 392baef commit e512208

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,20 @@ jobs:
3737

3838
- name: Run TypeCheck
3939
run: npm run type-check
40+
41+
test:
42+
runs-on: ubuntu-latest
43+
steps:
44+
- name: Checkout code
45+
uses: actions/checkout@v4
46+
47+
- name: Set up Node
48+
uses: actions/setup-node@v3
49+
with:
50+
node-version: "lts/*"
51+
52+
- name: Install dependencies
53+
run: npm clean-install
54+
55+
- name: Run TypeCheck
56+
run: npm run test

0 commit comments

Comments
 (0)