Skip to content

Commit e407b3d

Browse files
authored
Create ci.yml
1 parent 14adec2 commit e407b3d

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/ci.yml

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

0 commit comments

Comments
 (0)