Skip to content

Commit 3d3e51c

Browse files
committed
chore: add websocat install step
1 parent 8e3e27b commit 3d3e51c

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,11 @@ jobs:
7979
- run: ./main start --workdir tests
8080
env:
8181
SUPABASE_INTERNAL_IMAGE_REGISTRY: ghcr.io
82-
- run: sudo apt-get update && sudo apt-get install -y websocat
82+
- 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
8387
- run: ./e2e-test.sh ./main
8488

8589
link:

tests/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Local e2e tests
22

3+
0. Install websocat
4+
5+
```bash
6+
brew install websocat
7+
```
8+
39
1. Start local stack
410

511
```bash

0 commit comments

Comments
 (0)