Skip to content

Commit 0689f10

Browse files
committed
ci: add basic ci pipeline
1 parent 017a533 commit 0689f10

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Node
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 22
20+
cache: yarn
21+
22+
- name: Enable Corepack
23+
run: corepack enable
24+
25+
- name: Install
26+
run: yarn install --immutable
27+
28+
- name: Build
29+
run: yarn build
30+
31+
- name: Typecheck
32+
run: yarn test:types
33+
34+
- name: Unit Tests
35+
run: yarn test --run

0 commit comments

Comments
 (0)