Skip to content

Commit 54ad7ed

Browse files
committed
Add CI
1 parent 4087f2b commit 54ad7ed

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
- master
8+
pull_request:
9+
10+
jobs:
11+
main:
12+
runs-on: ubuntu-latest
13+
timeout-minutes: 20
14+
15+
steps:
16+
- uses: actions/checkout@v5
17+
18+
- run: corepack enable
19+
20+
- uses: actions/setup-node@v6
21+
with:
22+
node-version: 24
23+
cache: 'npm'
24+
25+
- run: npm ci
26+
27+
- run: npm run lint
28+
29+
- run: npm run test

0 commit comments

Comments
 (0)