Create 0x42fa14d6e4642b3789d8B0272534a41d415663A9.json #701
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 check | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
pr-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install packages | |
run: npm install | |
- name: check formatting issues | |
run: npm run compile | |
- name: check for lint issues | |
run: npm run lint | |
- name: check master-file | |
run: npm run test:checkMasterFile | |
- name: check token issue | |
run: npm run test:checkToken | |
- name: check contract issue | |
run: npm run test:checkContract | |
- name: check nft issues | |
run: npm run test:checkNft |