mirror of
https://github.com/p-stream/backend.git
synced 2026-04-19 23:32:05 +00:00
Merge branch 'p-stream:master' into master
This commit is contained in:
commit
0060633426
1 changed files with 5 additions and 2 deletions
7
.github/workflows/pull-request-testing.yaml
vendored
7
.github/workflows/pull-request-testing.yaml
vendored
|
|
@ -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: |
|
||||
|
|
|
|||
Loading…
Reference in a new issue