File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,23 +30,23 @@ jobs:
30
30
- uses : actions/checkout@v3
31
31
32
32
- 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
34
34
35
35
- name : Install node
36
36
uses : actions/setup-node@v1
37
37
with :
38
38
node-version : 16.x
39
39
40
40
- name : Install dependencies
41
- run : npm install --prefix "/ksqljs"
41
+ run : npm install --prefix ". /ksqljs"
42
42
43
43
- name : Sleep for 30 seconds
44
44
run : sleep 30s
45
45
shell : bash
46
46
47
47
- name : Run tests
48
- run : npm run test --prefix "/ksqljs"
48
+ run : npm run test --prefix ". /ksqljs"
49
49
50
50
- name : Stop containers
51
51
if : always()
52
- run : docker-compose -f "/ksqljs/docker-compose.yml" down
52
+ run : docker-compose -f ". /ksqljs/docker-compose.yml" down
You can’t perform that action at this time.
0 commit comments