Skip to content

Commit 03ebf68

Browse files
authoredNov 1, 2024
Merge pull request #10 from MarcoMandar/ai16z-main
Ai16z main
2 parents 9c58746 + 9880a53 commit 03ebf68

File tree

184 files changed

+32099
-29643
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+32099
-29643
lines changed
 

‎.bashrc

Whitespace-only changes.

‎.github/workflows/ci.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
check:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: pnpm/action-setup@v3
15+
with:
16+
version: 9.4.0
17+
18+
- name: Install dependencies
19+
run: pnpm i
20+
21+
- name: Run Prettier
22+
run: pnpm run prettier --check .
23+
24+
- name: Build packages
25+
run: pnpm run build

0 commit comments

Comments
 (0)