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 5de3b2b commit 6e59324Copy full SHA for 6e59324
.github/workflows/test.yml
@@ -21,11 +21,6 @@ jobs:
21
steps:
22
- uses: actions/checkout@v3
23
24
- - name: Start docker containers
25
- run: |
26
- docker-compose -f test-docker-compose.yml up -d
27
- sleep 10 # wait for database to be ready
28
-
29
- name: Use Node.js ${{ matrix.node }}
30
uses: actions/setup-node@v3
31
with:
@@ -42,5 +37,12 @@ jobs:
42
37
43
38
- run: npm test
44
39
40
+ - name: Prepear docker containers for integration tests
41
+ run: |
+ docker-compose -f test-docker-compose.yml up -d
+ sleep 10 # wait for database to be ready
+
45
- name: Client test
46
- run: node --test test/client.js
47
+ node --test test/client.js
48
+ node --test test/system.js
0 commit comments