Skip to content

Commit 7172850

Browse files
Create ci.yml
1 parent c12bf45 commit 7172850

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
check:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v5
12+
- uses: actions/setup-node@v5
13+
with:
14+
node-version: 22
15+
- run: npm install
16+
- run: npm run lint
17+
- run: npm test

0 commit comments

Comments
 (0)