Skip to content

Commit 87c08d4

Browse files
committed
add ci action file
1 parent e876ddb commit 87c08d4

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v4
11+
12+
- name: Set up Node.js
13+
uses: actions/setup-node@v4
14+
with:
15+
node-version: '22'
16+
17+
- name: Install dependencies
18+
run: npm install
19+
20+
- name: Run test script
21+
run: bash ./test-lint.sh

0 commit comments

Comments
 (0)