Skip to content

Commit 32b8a04

Browse files
committed
added dot in front of directory paths
1 parent 0b154ec commit 32b8a04

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/integration-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@ jobs:
3030
- uses: actions/checkout@v3
3131

3232
- name: Start Containers
33-
run: docker-compose -f "/ksqljs/docker-compose.yml" up -d --build
33+
run: docker-compose -f "./ksqljs/docker-compose.yml" up -d --build
3434

3535
- name: Install node
3636
uses: actions/setup-node@v1
3737
with:
3838
node-version: 16.x
3939

4040
- name: Install dependencies
41-
run: npm install --prefix "/ksqljs"
41+
run: npm install --prefix "./ksqljs"
4242

4343
- name: Sleep for 30 seconds
4444
run: sleep 30s
4545
shell: bash
4646

4747
- name: Run tests
48-
run: npm run test --prefix "/ksqljs"
48+
run: npm run test --prefix "./ksqljs"
4949

5050
- name: Stop containers
5151
if: always()
52-
run: docker-compose -f "/ksqljs/docker-compose.yml" down
52+
run: docker-compose -f "./ksqljs/docker-compose.yml" down

0 commit comments

Comments
 (0)