Skip to content

Commit e0fa689

Browse files
committed
implement ci pipeline
1 parent 2d71173 commit e0fa689

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI Pipeline
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
pull_request:
8+
branches:
9+
- '*'
10+
11+
jobs:
12+
test:
13+
name: Test
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v2
18+
19+
- name: Setup Node
20+
uses: actions/setup-node@v1
21+
with:
22+
node-version: '20.11.1'
23+
24+
- name: Install node modules
25+
run: npm install
26+
27+
- name: Run tests
28+
run: npm run test

0 commit comments

Comments
 (0)