From a07e038f37782a26fb09b79438b9934882449d25 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 27 Aug 2025 17:41:26 +0200 Subject: [PATCH] CI: run harness tests (#4565) --- .github/workflows/checks.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index eca7367f32..f490e7e646 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -91,3 +91,16 @@ jobs: New changes were found after re-generating the tests. Please read the documentation on procedurally generated tests https://github.com/tc39/test262/blob/HEAD/CONTRIBUTING.md#procedurally-generated-tests + + self-test: + name: Run the harness tests + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install test262-harness + run: npm install + + - name: Run tests + run: npm run test -- --errorForFailures -- test/harness/*.js