Skip to content

Commit c024414

Browse files
authored
Fix workflow action tests (#38)
1 parent a0ffb32 commit c024414

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/pull-request-testing.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,9 @@ jobs:
9494
9595
- name: Run account creation integration test
9696
run: |
97+
# Making sure this is installed cause it keeeps failing cause of this
9798
# Create a Node.js script to handle the crypto operations
98-
cat > /tmp/auth-test.mjs << 'EOF'
99+
cat > auth-test.mjs << 'EOF'
99100
import crypto from 'crypto';
100101
import nacl from 'tweetnacl';
101102
@@ -268,7 +269,9 @@ jobs:
268269
});
269270
EOF
270271
271-
node /tmp/auth-test.mjs
272+
node auth-test.mjs
273+
rm auth-test.mjs
274+
272275
273276
- name: Run API endpoint tests
274277
run: |

0 commit comments

Comments
 (0)