Merge pull request #133 from tellor-io/cleanup #214
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: Checks | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
pull_request: | |
jobs: | |
Linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Run Solhint | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- run: npm install -g solhint | |
- run: make solhint | |
Security: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Slither Static Analysis | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- run: npm install |