Skip to content

Commit 70ac529

Browse files
committed
ci: add simple ci setup
1 parent eab28c8 commit 70ac529

File tree

2 files changed

+1561
-0
lines changed

2 files changed

+1561
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Docs CI
2+
3+
on:
4+
push:
5+
branches: [ main, docs/ui ]
6+
pull_request:
7+
branches: [ main, docs/ui ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Setup Node
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: 19
20+
cache: 'npm'
21+
- run: npm ci
22+
- run: npm run lint:check --if-present
23+
- run: npm run build --if-present

0 commit comments

Comments
 (0)