feat: add sepolia deployments #240
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: CI | |
on: [push] | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install Additional dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get -y install rsync libudev-dev libusb-1.0-0-dev | |
- name: Install deps and build (with cache) | |
uses: bahmutov/npm-install@v1 | |
- name: Test | |
run: yarn test |