From 001cf1f6db4c4babf0219270aec9cbfd64d578e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Burzy=C5=84ski?= Date: Sat, 13 Jun 2026 22:21:54 +0200 Subject: [PATCH] Temporarily skip a test --- tests/integration/node.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/integration/node.test.ts b/tests/integration/node.test.ts index dedd5c7..aeaceb4 100644 --- a/tests/integration/node.test.ts +++ b/tests/integration/node.test.ts @@ -245,7 +245,8 @@ describe("node", () => { }); }); - it("can commit using tag as a base", async () => { + // oxlint-disable-next-line vitest/no-disabled-tests + it.skip("can commit using tag as a base", async () => { const branch = `${TEST_BRANCH_PREFIX}-tag-base`; branches.push(branch); @@ -254,6 +255,8 @@ describe("node", () => { ...REPO, branch, base: { + // for some reason the tag used here needs to have `.github/workflows` identical~ to the default branch + // otherwise, GitHub rejects `createRef` with "Resource not accessible by integration" and reports missing `workflows=write` permission tag: "v1.4.0", }, ...BASIC_FILE_CONTENTS,