From c0244145394c3abb70558bb2ba15a6d7e2d7d403 Mon Sep 17 00:00:00 2001 From: dum Date: Mon, 2 Mar 2026 11:07:58 +0530 Subject: [PATCH] Fix workflow action tests (#38) --- .github/workflows/pull-request-testing.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request-testing.yaml b/.github/workflows/pull-request-testing.yaml index 3ffa01a..4c53ebf 100644 --- a/.github/workflows/pull-request-testing.yaml +++ b/.github/workflows/pull-request-testing.yaml @@ -94,8 +94,9 @@ jobs: - name: Run account creation integration test run: | + # Making sure this is installed cause it keeeps failing cause of this # Create a Node.js script to handle the crypto operations - cat > /tmp/auth-test.mjs << 'EOF' + cat > auth-test.mjs << 'EOF' import crypto from 'crypto'; import nacl from 'tweetnacl'; @@ -268,7 +269,9 @@ jobs: }); EOF - node /tmp/auth-test.mjs + node auth-test.mjs + rm auth-test.mjs + - name: Run API endpoint tests run: |