Skip to content

Commit c374828

Browse files
author
anurag.lohar
committed
added basic react workflow
1 parent a98b844 commit c374828

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: basic-second-wrokflow
2+
on: push
3+
jobs:
4+
test:
5+
runs-on: ubantu-latest
6+
steps:
7+
- name: Checkout code
8+
uses: actions/checkout@v3
9+
- name: Install Node.js
10+
uses: actions/setup-node@v3
11+
with:
12+
node-version: '22'
13+
- name: Install dependencies
14+
run: npm install
15+
- name: Run tests
16+
run: npm test

0 commit comments

Comments
 (0)