Skip to content

Commit 7d41550

Browse files
committed
Preventing loading submodules during test as they are for local development
1 parent 5f7b891 commit 7d41550

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,16 @@ jobs:
4444

4545
- name: Checkout code
4646
uses: actions/checkout@v2
47+
with:
48+
submodules: false
4749

4850
- name: Build and start Docker Compose services
49-
run: docker-compose -f compose.yaml up --build -d
51+
run: docker-compose -f compose.yaml up --build -d && cd test && npm install && npm run test:local
5052

51-
- name: Run tests inside Docker container
52-
run: cd tests && npm run test:docker
53+
- name: Recursively show cwd
54+
run: |
55+
pwd
56+
ls -R
5357
5458
- name: Tear down Docker Compose services
5559
run: docker-compose down

0 commit comments

Comments
 (0)