Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
node-version: [16.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 2

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/devnet-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: develop
- name: Cache node modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
node-version: [16.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-e2e-${{ hashFiles('**/yarn.lock') }}
Expand All @@ -34,21 +34,21 @@ jobs:
- name: Install and build packages
run: yarn setup
- name: Docker compose up
run: cd __tests__/e2e/lib/config && docker-compose up -d
run: cd __tests__/e2e/lib/config && docker compose up -d
- name: Let the network run during 5min
run: sleep 300
- name: Show logs - node0
if: always()
run: docker logs config_core0_1
run: docker logs config-core0-1
- name: Show logs - node1
if: always()
run: docker logs config_core1_1
run: docker logs config-core1-1
- name: Show logs - node2
if: always()
run: docker logs config_core2_1
run: docker logs config-core2-1
- name: Show logs - node3
if: always()
run: docker logs config_core3_1
run: docker logs config-core3-1
- name: Show logs - node4
if: always()
run: docker logs config_core4_1
run: docker logs config-core4-1
Loading
Loading