Skip to content

Commit 712df41

Browse files
committed
ci: add github actions pipeline
1 parent ef6d67e commit 712df41

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: pnpm/action-setup@v4
11+
with:
12+
version: 10
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: '20'
16+
cache: 'pnpm'
17+
- name: Install deps
18+
run: pnpm install
19+
- name: Lint + typecheck + build + test
20+
run: pnpm lint && pnpm check && pnpm build && pnpm test

0 commit comments

Comments
 (0)