Skip to content

Multichain

Multichain #18

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, edited, ready_for_review]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install packages
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: yarn --ignore-scripts
shell: bash
- name: Run Tests
run: yarn hardhat test
shell: bash