From 8571a3002bf4b609629acfeeeb9705fece62cb5e Mon Sep 17 00:00:00 2001 From: lowlighter <22963968+lowlighter@users.noreply.github.com> Date: Wed, 28 Apr 2021 23:07:30 +0200 Subject: [PATCH] Update ci.test.js --- tests/ci.test.js | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/tests/ci.test.js b/tests/ci.test.js index a9c4637d..6d48f458 100644 --- a/tests/ci.test.js +++ b/tests/ci.test.js @@ -18,15 +18,24 @@ ".github/config/*", ".github/ISSUE_TEMPLATE/*", ".github/PULL_REQUEST_TEMPLATE/*", - ".github/readme/README.md", - ".github/readme/partials/*", + ".github/readme/partials/license.md", + ".github/readme/partials/setup.md", + ".github/readme/partials/shared.md", + ".github/readme/partials/documentation/compatibility.md", + ".github/readme/partials/introduction.md", ".github/workflows/*", ".github/FUNDING.yml", ".github/index.mjs", ".github/release.mjs", + ".github/markdown_example.mjs", + ".github/architecture.svg", "LICENSE", + "ARCHITECTURE.md", "SECURITY.md", - "tests/ci.test.js" + "tests/ci.test.js", + "source/.eslintrc.yml", + "source/app/mocks/.eslintrc.yml", + "vercel.json" ])("%s", async file => expect((await diff()).filter(edited => new RegExp(`^${file.replace(/[.]/g, "[.]").replace(/[*]/g, "[\\s\\S]*")}$`).test(edited)).length).toBe(0))) })