mirror of
https://github.com/p-stream/backend.git
synced 2026-04-21 08:12:18 +00:00
Update pull-request-testing.yaml
This commit is contained in:
parent
2e9a3b6ce1
commit
5ff5f13f82
1 changed files with 4 additions and 3 deletions
7
.github/workflows/pull-request-testing.yaml
vendored
7
.github/workflows/pull-request-testing.yaml
vendored
|
|
@ -95,9 +95,8 @@ jobs:
|
||||||
- name: Run account creation integration test
|
- name: Run account creation integration test
|
||||||
run: |
|
run: |
|
||||||
# Making sure this is installed cause it keeeps failing cause of this
|
# Making sure this is installed cause it keeeps failing cause of this
|
||||||
npm install tweetnacl
|
|
||||||
# Create a Node.js script to handle the crypto operations
|
# 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 crypto from 'crypto';
|
||||||
import nacl from 'tweetnacl';
|
import nacl from 'tweetnacl';
|
||||||
|
|
||||||
|
|
@ -270,7 +269,9 @@ jobs:
|
||||||
});
|
});
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
node /tmp/auth-test.mjs
|
node auth-test.mjs
|
||||||
|
rm auth-test.mjs
|
||||||
|
|
||||||
|
|
||||||
- name: Run API endpoint tests
|
- name: Run API endpoint tests
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue