From b20b1752f4e0897918227948a325aabde8c5db42 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Tue, 3 Sep 2024 16:42:59 +0100 Subject: [PATCH] Enable QuickJS testing on CI. --- .github/workflows/main.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dfb46ad2..961c3ceb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -55,10 +55,18 @@ jobs: shell: bash run: build/build.sh -platform $PLATFORM -build_only - - name: Test + - name: Test (.NET) shell: bash run: build/test.sh -platform $PLATFORM + - name: Build (QuickJS runtime) + shell: bash + run: tests/quickjs/bootstrap.sh + + - name: Test (QuickJS) + shell: bash + run: tests/quickjs/test.sh + - name: Pack shell: bash run: build/build.sh prepack -platform $PLATFORM