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 5f7b891 commit 05ca892Copy full SHA for 05ca892
.github/workflows/test.yml
@@ -44,12 +44,16 @@ jobs:
44
45
- name: Checkout code
46
uses: actions/checkout@v2
47
+ with:
48
+ submodules: false
49
50
- name: Build and start Docker Compose services
- run: docker-compose -f compose.yaml up --build -d
51
+ run: docker-compose -f compose.yaml up --build -d && cd test && npm run test:docker
52
- - name: Run tests inside Docker container
- run: cd tests && npm run test:docker
53
+ - name: Recursively show cwd
54
+ run: |
55
+ pwd
56
+ ls -R
57
58
- name: Tear down Docker Compose services
59
run: docker-compose down
0 commit comments