Skip to content

Re-deploy to OP Sepolia #86

Re-deploy to OP Sepolia

Re-deploy to OP Sepolia #86

Workflow file for this run

name: "CI"
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
name: "Tests"
runs-on: ubuntu-latest
needs: []
steps:
- name: "Checkout Repo"
uses: actions/checkout@master
- name: "Install Node"
uses: actions/setup-node@v2
with:
node-version: "14"
cache: "yarn"
- name: "Install JS Dependencies"
run: "yarn install --frozen-lockfile --dev"
- name: "Build"
run: "yarn prepare"
- name: "Run tests"
run: "yarn hardhat test"