Skip to content

Commit c62d972

Browse files
chore(ci): Filter compilation for faster runs on validate-changelog and run on all generators (#9960)
* Filter compilation for faster runs * Updating for all generators
1 parent 1519397 commit c62d972

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

.github/workflows/validate-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: ./.github/actions/install
3535

3636
- name: Compile
37-
run: pnpm compile
37+
run: pnpm exec turbo compile '--filter=@fern-api/seed-cli'
3838

3939
- name: Seed Build
4040
run: pnpm seed:build

scripts/validate-all-changelogs.sh

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,29 @@ set -e
77

88
# Run all validations in parallel and collect errors
99
generators=(
10-
fastapi
10+
ruby-model
11+
ruby-sdk
12+
ruby-sdk-v2
1113
pydantic
1214
python-sdk
13-
go-sdk
14-
ruby-sdk
15-
postman
15+
fastapi
1616
openapi
17+
postman
1718
java-sdk
1819
java-model
1920
java-spring
21+
ts-sdk
2022
ts-express
21-
csharp-sdk
23+
go-fiber
24+
go-model
25+
go-sdk
2226
csharp-model
23-
php-sdk
27+
csharp-sdk
2428
php-model
25-
rust-sdk
26-
rust-model
29+
php-sdk
2730
swift-sdk
31+
rust-model
32+
rust-sdk
2833
)
2934

3035
# Create temporary files for each generator's output

0 commit comments

Comments
 (0)