Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Lbqds committed Aug 7, 2024
1 parent cde3d31 commit cf4a664
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/it.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
pull_request:
push:
branches:
- refactor-configs
- master
jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -24,7 +24,7 @@ jobs:
run: docker system prune -f
- name: start docker images
working-directory: ./docker
run: MONGO_USER=root MONGO_PASSWORD=root docker-compose up -d
run: MONGO_USER=root MONGO_PASSWORD=root docker compose up -d
- name: wait until contracts are deployed
working-directory: ./docker
run: ./wait-until-services-up.sh
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
# Verify whether the Makefile builds the node (no dependencies other than Go)
node:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
Expand All @@ -17,7 +17,7 @@ jobs:
- run: make node && make guardian-test

ethereum:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand All @@ -26,7 +26,7 @@ jobs:
- run: cd ethereum && make test

ethereum-upgrade:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand All @@ -38,7 +38,7 @@ jobs:
- run: cd ethereum && PATH=$PATH:$XDG_CONFIG_HOME/.foundry/bin/ make test-upgrade

alephium:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
Expand All @@ -52,7 +52,7 @@ jobs:
working-directory: ./alephium
run: |
pushd docker
docker-compose up -d
docker compose up -d
popd
SECONDS=0
sleep 5
Expand All @@ -76,7 +76,7 @@ jobs:
npm run lint
sdk:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
Expand All @@ -99,7 +99,7 @@ jobs:
npm ci && npm run build && npm run test
token-list:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
Expand Down

0 comments on commit cf4a664

Please sign in to comment.