(chore) Update dependecies and fix breking changes #62
Workflow file for this run
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: 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 |