File tree Expand file tree Collapse file tree 2 files changed +49
-30
lines changed
Expand file tree Collapse file tree 2 files changed +49
-30
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches : [main]
7+
8+ jobs :
9+ typecheck :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v5
13+ - uses : jdx/mise-action@v3
14+ - run : pnpm install
15+ - run : pnpm tsc --noEmit
16+
17+ build :
18+ runs-on : ubuntu-latest
19+ steps :
20+ - uses : actions/checkout@v5
21+ - uses : jdx/mise-action@v3
22+ - name : Install OS dependencies
23+ run : |
24+ sudo apt-get update
25+ sudo apt-get install -y libusb-1.0-0-dev libudev-dev
26+ - run : pnpm install
27+ - run : pnpm build
28+
29+ format :
30+ runs-on : ubuntu-latest
31+ steps :
32+ - uses : actions/checkout@v5
33+ - uses : jdx/mise-action@v3
34+ - run : pnpm install
35+ - run : pnpm prettier --check .
36+
37+ test :
38+ runs-on : ubuntu-latest
39+ steps :
40+ - uses : actions/checkout@v5
41+ - uses : jdx/mise-action@v3
42+ - name : Install wasm32 target
43+ run : rustup target add wasm32-unknown-unknown
44+ - name : Install OS dependencies
45+ run : |
46+ sudo apt-get update
47+ sudo apt-get install -y libusb-1.0-0-dev libudev-dev
48+ - run : pnpm install
49+ - run : pnpm test
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments