-
Notifications
You must be signed in to change notification settings - Fork 27
38 lines (33 loc) · 866 Bytes
/
CI.yaml
File metadata and controls
38 lines (33 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.2"
- run: make setup
- run: make clean build-lib-js
- run: make clean build-lib-types
- run: make clean build-web
- run: make clean check-package.json
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.2"
- run: make setup
- run: make clean lint-ts-biome
- run: make clean lint-ts-tsc
- run: make clean test-bun
- run: make clean test-exports