Skip to content

Name changed

Name changed #2

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install packages
uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: yarn --ignore-scripts
shell: bash
- name: Create local node and deploy
run: |
yarn hardhat node &
yarn hardhat run scripts/deploy.ts --network localhost
- name: Run Tests
run: yarn hardhat test