Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/pull-request-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down Expand Up @@ -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: |
Expand Down