Skip to content

ReleaseGold refund test fix #303

ReleaseGold refund test fix

ReleaseGold refund test fix #303

name: NPM install testing workflow
# By default the sha where it runs is latest commit on default branch
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
on:
schedule:
# daily at 19:00 UTC
- cron: 0 19 * * *
workflow_dispatch:
pull_request:
branches:
- master
jobs:
install-npm-package:
name: ${{ matrix.package }} NPM package install
runs-on: ubuntu-latest
container:
image: node:14-bullseye
strategy:
fail-fast: false
matrix:
package:
- '@celo/typescript'
- '@celo/utils'
- '@celo/contractkit'
- '@celo/celocli'
steps:
- name: Install @celo/celocli dependencies
if: matrix.package == '@celo/celocli'
run: |
apt update
apt install -y libusb-1.0-0-dev
- name: Installing npm package
run: yarn add ${{ matrix.package }}
- name: Test celocli command
if: matrix.package == '@celo/celocli'
run: |
yarn --cwd=packages/cli run celocli account:new