[core] upgrade celo client libs to fix ledger issues #504
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: sudo apt-get install xvfb | |
- run: yarn config set network-timeout 600000 -g | |
- run: yarn | |
- run: yarn lint | |
- run: yarn compile | |
- run: yarn test | |
- run: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' yarn wdio |