From 2e9a3b6ce12e9d33c730171138a56700aef37ba9 Mon Sep 17 00:00:00 2001 From: dum Date: Fri, 27 Feb 2026 22:57:37 +0530 Subject: [PATCH 1/2] Update pull-request-testing.yaml --- .github/workflows/pull-request-testing.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pull-request-testing.yaml b/.github/workflows/pull-request-testing.yaml index 3ffa01a..561296c 100644 --- a/.github/workflows/pull-request-testing.yaml +++ b/.github/workflows/pull-request-testing.yaml @@ -94,6 +94,8 @@ jobs: - name: Run account creation integration test run: | + # Making sure this is installed cause it keeeps failing cause of this + npm install tweetnacl # Create a Node.js script to handle the crypto operations cat > /tmp/auth-test.mjs << 'EOF' import crypto from 'crypto'; From 5ff5f13f824944648fb6f19aa4a9ef0b198ee444 Mon Sep 17 00:00:00 2001 From: dum Date: Fri, 27 Feb 2026 23:15:49 +0530 Subject: [PATCH 2/2] Update pull-request-testing.yaml --- .github/workflows/pull-request-testing.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request-testing.yaml b/.github/workflows/pull-request-testing.yaml index 561296c..4c53ebf 100644 --- a/.github/workflows/pull-request-testing.yaml +++ b/.github/workflows/pull-request-testing.yaml @@ -95,9 +95,8 @@ jobs: - name: Run account creation integration test run: | # Making sure this is installed cause it keeeps failing cause of this - npm install tweetnacl # 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'; @@ -270,7 +269,9 @@ jobs: }); EOF - node /tmp/auth-test.mjs + node auth-test.mjs + rm auth-test.mjs + - name: Run API endpoint tests run: |