mirror of
https://github.com/p-stream/backend.git
synced 2026-03-11 17:55:35 +00:00
Fix workflow action tests (#38)
Some checks failed
Build and Publish Docker image to GHCR / build-and-push (push) Has been cancelled
Some checks failed
Build and Publish Docker image to GHCR / build-and-push (push) Has been cancelled
This commit is contained in:
parent
a0ffb32fd5
commit
c024414539
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
|
- name: Run account creation integration test
|
||||||
run: |
|
run: |
|
||||||
|
# Making sure this is installed cause it keeeps failing cause of this
|
||||||
# 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';
|
||||||
|
|
||||||
|
|
@ -268,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