Skip to content

Commit a927260

Browse files
authored
Create ci.yml
1 parent b3fa067 commit a927260

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on:
2+
push:
3+
branches: [ "main" ]
4+
pull_request:
5+
branches: [ "main" ]
6+
7+
jobs:
8+
BuildAndTest:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
13+
- run: npm ci
14+
- run: npm run build
15+
- run: npm run dev
16+
- run: npm test

0 commit comments

Comments
 (0)