Skip to content

Commit

Permalink
make package install test slightly more useful (#10663)
Browse files Browse the repository at this point in the history
* supported version of node is 18 not 16

* install latest beta, at least then this tests has some chance of catching an issue before the package is live.

* typescript package is not important
  • Loading branch information
aaronmgdr authored Oct 25, 2023
1 parent 97c80dd commit 0ef6eca
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cron-npm-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ jobs:
name: ${{ matrix.package }} NPM package install
runs-on: ubuntu-latest
container:
image: node:16-bullseye
image: node:18-bullseye
strategy:
fail-fast: false
matrix:
package:
- '@celo/typescript'
- '@celo/utils'
- '@celo/contractkit'
- '@celo/celocli'
- '@celo/utils@beta'
- '@celo/contractkit@beta'
- '@celo/celocli@beta'
steps:
- name: Install @celo/celocli dependencies
if: matrix.package == '@celo/celocli'
if: matrix.package == '@celo/celocli@beta'
run: |
apt update
apt install -y libusb-1.0-0-dev libudev-dev
yarn global add node-gyp
- name: Installing npm package
run: yarn add ${{ matrix.package }}
- name: Test celocli command
Expand Down

0 comments on commit 0ef6eca

Please sign in to comment.