Skip to content

Commit

Permalink
Merge branch 'main' into new-blogpost
Browse files Browse the repository at this point in the history
  • Loading branch information
Nlea authored Sep 19, 2024
2 parents 1dfbbbe + d3001e3 commit 5416692
Show file tree
Hide file tree
Showing 244 changed files with 9,305 additions and 4,943 deletions.
27 changes: 24 additions & 3 deletions .github/workflows/build_frontends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@ name: Build node packages
on:
pull_request:
branches: ["*"]
paths:
- "api/**"
- "packages/client-library-otel/**"
- "studio/**"
push:
branches: ["main", "release-*"]
paths:
- "api/**"
- "packages/client-library-otel/**"
- "studio/**"

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -34,7 +42,7 @@ jobs:
- name: Setup Biome
uses: biomejs/setup-biome@v2
with:
version: latest
version: 1.8.3

- name: Install dependencies
run: pnpm install
Expand All @@ -57,10 +65,23 @@ jobs:
- name: Typecheck all workspaces
run: pnpm --recursive typecheck

# Testing

- name: Test Studio API
run: pnpm --filter @fiberplane/studio test

- name: Test Studio Frontend
run: pnpm --filter @fiberplane/studio-frontend test

# Building

- name: Build all workspaces
run: pnpm --recursive build
- name: Build api, frontend, and client library
run: |
pnpm \
--filter=@fiberplane/studio-frontend \
--filter=@fiberplane/studio \
--filter=@fiberplane/hono-otel \
build
# Release a preview version

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Changelog

See the [changelog on the website](https://fiberplane.com/changelog) for a detailed overview.
Loading

0 comments on commit 5416692

Please sign in to comment.