Skip to content

Commit a4b140e

Browse files
add CI workflow
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 1bde200 commit a4b140e

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
branches: [main]
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Run tests
14+
run: node test.js
15+
- name: Lint
16+
run: npm run lint

0 commit comments

Comments
 (0)