Fix workflow action tests (#38)
Some checks failed
Build and Publish Docker image to GHCR / build-and-push (push) Has been cancelled

This commit is contained in:
dum 2026-03-02 11:07:58 +05:30 committed by GitHub
parent a0ffb32fd5
commit c024414539
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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: |