Transferring ERC-1155 fix from inventory (#204) #860
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: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build | |
steps: | |
- name: git-checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
# - name: Typecheck | |
# run: pnpm typecheck | |
- name: Build | |
run: pnpm build && pnpm build:react | |
- name: Test | |
run: pnpm test |