Skip to content

(chore) Update dependecies and fix breking changes #64

(chore) Update dependecies and fix breking changes

(chore) Update dependecies and fix breking changes #64

Workflow file for this run

name: ERC721-Linkable Build-Test
on:
pull_request:
branches:
- develop
jobs:
############ UNIT TEST ############
test-unit:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "npm"
registry-url: https://registry.npmjs.org/
- run: corepack enable
- name: Install NPM Dependencies
run: npm install
- name: Generate types
run: npm run typechain
- name: Unit Tests
env:
MRC_BLOCKNUMBER: ${{ secrets.MRC_BLOCKNUMBER }}
ALCHEMY_POLYGON: ${{ secrets.ALCHEMY_POLYGON }}
run: npx hardhat test