We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0ffb32 commit c024414Copy full SHA for c024414
.github/workflows/pull-request-testing.yaml
@@ -94,8 +94,9 @@ jobs:
94
95
- name: Run account creation integration test
96
run: |
97
+ # Making sure this is installed cause it keeeps failing cause of this
98
# Create a Node.js script to handle the crypto operations
- cat > /tmp/auth-test.mjs << 'EOF'
99
+ cat > auth-test.mjs << 'EOF'
100
import crypto from 'crypto';
101
import nacl from 'tweetnacl';
102
@@ -268,7 +269,9 @@ jobs:
268
269
});
270
EOF
271
- node /tmp/auth-test.mjs
272
+ node auth-test.mjs
273
+ rm auth-test.mjs
274
+
275
276
- name: Run API endpoint tests
277
0 commit comments