Skip to content

Commit 79ee1b0

Browse files
committed
feat: Adds task-2 solution
1 parent 25175c2 commit 79ee1b0

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/task-2.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: task-2-workflow
2+
run-name: Task 1 workflow
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
jobs:
8+
unit-tests:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@v4
13+
- name: Install dependencies
14+
run: npm install
15+
- name: Run unit tests
16+
run: npm test

0 commit comments

Comments
 (0)