Skip to content

Commit 8552d85

Browse files
committed
chore(ci): add build workflow
1 parent 4c849b4 commit 8552d85

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: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: 20
13+
cache: 'npm'
14+
15+
- run: npm ci
16+
- run: npm run build

0 commit comments

Comments
 (0)