2020 node-version : [16.x]
2121
2222 steps :
23- - uses : actions/checkout@v2
23+ - uses : actions/checkout@v4
2424 - name : Cache node modules
25- uses : actions/cache@v1
25+ uses : actions/cache@v4
2626 with :
2727 path : node_modules
2828 key : ${{ runner.os }}-e2e-${{ hashFiles('**/yarn.lock') }}
@@ -34,21 +34,21 @@ jobs:
3434 - name : Install and build packages
3535 run : yarn setup
3636 - name : Docker compose up
37- run : cd __tests__/e2e/lib/config && docker- compose up -d
37+ run : cd __tests__/e2e/lib/config && docker compose up -d
3838 - name : Let the network run during 5min
3939 run : sleep 300
4040 - name : Show logs - node0
4141 if : always()
42- run : docker logs config_core0_1
42+ run : docker logs config-core0-1
4343 - name : Show logs - node1
4444 if : always()
45- run : docker logs config_core1_1
45+ run : docker logs config-core1-1
4646 - name : Show logs - node2
4747 if : always()
48- run : docker logs config_core2_1
48+ run : docker logs config-core2-1
4949 - name : Show logs - node3
5050 if : always()
51- run : docker logs config_core3_1
51+ run : docker logs config-core3-1
5252 - name : Show logs - node4
5353 if : always()
54- run : docker logs config_core4_1
54+ run : docker logs config-core4-1
0 commit comments