From ff85e819bd1dfb1ee9f2579f6396a3654dd13102 Mon Sep 17 00:00:00 2001 From: BrainFooLong Date: Wed, 14 Aug 2024 14:45:50 +0200 Subject: [PATCH] setup workflow tests --- .github/workflows/tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2f1a699..68d744f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,9 +24,15 @@ jobs: with: node-version: '15.x' - - name: Run PHP Test + - name: Run PHP isolated Test run: php tests/test-encrypt-decrypt.php + - name: Run NodeJs isolated Test + run: node tests/test-encrypt-decrypt.js + + - name: Run PHP<->JS Tests + run: node tests/test-js-php.js && php tests/test-js-php.php + # - name: Install Playwright Browsers # run: npx playwright install --with-deps