We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 381d684 commit d5acd25Copy full SHA for d5acd25
.github/workflows/ts_tests.yml
@@ -120,6 +120,8 @@ jobs:
120
--health-interval 30s
121
--health-retries 6
122
steps:
123
+ # - uses: docker/setup-compose-action@v1
124
+
125
- uses: actions/checkout@v4
126
127
- uses: pnpm/action-setup@v4
@@ -135,6 +137,11 @@ jobs:
135
137
- name: Build Node dependencies, if any
136
138
run: pnpm -r --filter "$(jq '.name' -r package.json)^..." build
139
140
+ - name: Run nginx to serve as proxy for Electric in caching tests
141
+ working-directory: packages/sync-service/dev
142
+ run: |
143
+ docker run --rm -d -v ./nginx.conf:/etc/nginx/nginx.conf -p 3002:3002 --add-host host.docker.internal:host-gateway nginx
144
145
- name: Run tests
146
run: pnpm run coverage --run
147
0 commit comments