Compare commits

..

2 Commits

Author SHA1 Message Date
vorotamoroz f42ce099df ci: publish CLI images for AMD64 and ARM64 2026-07-15 12:39:32 +00:00
vorotamoroz 7aef55ed4f test: add CLI-to-Obsidian compatibility E2E 2026-07-15 12:38:59 +00:00
2 changed files with 0 additions and 14 deletions
-5
View File
@@ -45,11 +45,6 @@ jobs:
node-version: "24.x"
cache: npm
- name: Use Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Install dependencies
run: npm ci
-9
View File
@@ -113,15 +113,6 @@ describe("release workflow", () => {
expect(workflow).toMatch(/git add[^\n]*_types/);
});
it("installs Deno before post-processing fallback type definitions", () => {
const workflow = readFileSync(prepareReleaseWorkflow, "utf8");
const setupDeno = workflow.indexOf("denoland/setup-deno@v2");
const buildTypes = workflow.indexOf("npm run build:lib:types");
expect(setupDeno).toBeGreaterThan(-1);
expect(setupDeno).toBeLessThan(buildTypes);
});
it("keeps the release PR in draft until BRAT validation", () => {
const workflow = readFileSync(prepareReleaseWorkflow, "utf8");