Include support to detect ERC1155
, ERC1155MetadataURI
, ERC721Metadata
and ERC721Enumerable
interfaces
#6
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: PR Size Limit | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
size: | |
runs-on: ubuntu-latest | |
env: | |
CI_JOB_NUMBER: 1 | |
steps: | |
- uses: actions/checkout@v1 | |
- run: yarn install --frozen-lockfile | |
- run: yarn compile | |
- uses: andresz1/size-limit-action@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
build_script: bundle | |
skip_step: install |