Skip to content

Commit 91b2b23

Browse files
authored
Merge pull request #31 from OthmanImam/feat/AutomatedTesting
feat/Implemented Automated Testing (Unit & Integration)
2 parents 4b20795 + 3b831e1 commit 91b2b23

File tree

6 files changed

+308
-39
lines changed

6 files changed

+308
-39
lines changed

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI - Automated Tests
2+
3+
on:
4+
push:
5+
branches: [main, feat/AutomatedTesting]
6+
pull_request:
7+
branches: [main, feat/AutomatedTesting]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v3
15+
- name: Set up Node.js
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: '18'
19+
- name: Install dependencies
20+
run: npm install
21+
- name: Run tests
22+
run: npm test

0 commit comments

Comments
 (0)