Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci-fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build TypeScript dependencies for Rust tests
run: pnpm exec turbo run build --filter=@alienplatform/sdk --filter=@alienplatform/commands

- name: Rust fast tests (non-cloud)
env:
AXIOM_OTLP_ENDPOINT: https://api.axiom.co/v1/logs
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1010,6 +1010,11 @@ jobs:
- name: Install JavaScript dependencies
run: pnpm install --frozen-lockfile

- name: Build packages used by addon smoke test
run: |
pnpm --filter @alienplatform/core build
pnpm --filter @alienplatform/bindings build

- name: Download staged addon (${{ matrix.triple }})
uses: actions/download-artifact@v7
with:
Expand Down
1 change: 0 additions & 1 deletion packages/bindings/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"scripts": {
"build": "tsdown && tsc -p tsconfig.build.json --emitDeclarationOnly",
"build:addon": "napi build --platform --release --cwd ../../crates/alien-bindings-node",
"prepare": "npm run build",
"test": "vitest run",
"test:bun": "bun scripts/run-bun-tests.mjs",
"test:ts": "tsc --noEmit",
Expand Down
11 changes: 11 additions & 0 deletions packages/bindings/turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"extends": ["//"],
"tasks": {
"build:addon": {
"cache": false
},
"test": {
"dependsOn": ["$TURBO_EXTENDS$", "build:addon"]
}
}
}
1 change: 0 additions & 1 deletion packages/commands/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
},
"scripts": {
"build": "tsdown && tsc -p tsconfig.build.json --emitDeclarationOnly",
"prepare": "npm run build",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:bun": "BUN_EXPECTED=1 bun test tests/runtime-canary.test.ts tests/commands-client.test.ts tests/receiver.test.ts tests/presigned.test.ts",
Expand Down
1 change: 0 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
},
"scripts": {
"build": "tsdown",
"prepare": "npm run build",
"test": "vitest run",
"test:ts": "tsc --noEmit",
"generate": "rm -rf src/generated && cargo run --quiet --bin schema_exporter --features=clap,openapi -p alien-core -- --output openapi.json && kubb generate",
Expand Down
1 change: 0 additions & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
},
"scripts": {
"build": "tsdown && tsc --emitDeclarationOnly",
"prepare": "npm run build",
"test": "vitest run --passWithNoTests",
"test:ts": "tsc --noEmit",
"generate": "./scripts/generate-proto.sh",
Expand Down
1 change: 1 addition & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"cache": false
},
"test": {
"dependsOn": ["^build", "build"],
"cache": false
},
"test:ts": {
Expand Down
Loading