We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e3e27b commit 3d3e51cCopy full SHA for 3d3e51c
.github/workflows/ci.yml
@@ -79,7 +79,11 @@ jobs:
79
- run: ./main start --workdir tests
80
env:
81
SUPABASE_INTERNAL_IMAGE_REGISTRY: ghcr.io
82
- - run: sudo apt-get update && sudo apt-get install -y websocat
+ - name: Install websocat
83
+ run: |
84
+ sudo wget -qO /usr/local/bin/websocat https://github.com/vi/websocat/releases/latest/download/websocat.x86_64-unknown-linux-musl
85
+ sudo chmod a+x /usr/local/bin/websocat
86
+ websocat --version
87
- run: ./e2e-test.sh ./main
88
89
link:
tests/README.md
@@ -1,5 +1,11 @@
1
## Local e2e tests
2
3
+0. Install websocat
4
+
5
+```bash
6
+brew install websocat
7
+```
8
9
1. Start local stack
10
11
```bash
0 commit comments