Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix NPM install test #10569

Merged
merged 12 commits into from
Sep 18, 2023
4 changes: 2 additions & 2 deletions .github/workflows/cron-npm-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: ${{ matrix.package }} NPM package install
runs-on: ubuntu-latest
container:
image: node:18-bullseye
image: node:16-bullseye
strategy:
fail-fast: false
matrix:
Expand All @@ -29,7 +29,7 @@ jobs:
if: matrix.package == '@celo/celocli'
run: |
apt update
apt install -y libusb-1.0-0-dev
apt install -y libusb-1.0-0-dev libudev-dev
- name: Installing npm package
run: yarn add ${{ matrix.package }}
- name: Test celocli command
Expand Down
Loading