File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -156,6 +156,25 @@ jobs:
156156 - run : yarn prettier:check
157157 working-directory : ./dapp
158158
159+ dapp-oeth-lint :
160+ name : " OETH DApp Linter"
161+ runs-on : ubuntu-latest
162+ steps :
163+ - uses : actions/checkout@v3
164+
165+ - name : Use Node.js
166+ uses : actions/setup-node@v2
167+ with :
168+ node-version : " 16.x"
169+ cache : " yarn"
170+ cache-dependency-path : dapp-oeth/yarn.lock
171+
172+ - run : yarn install --frozen-lockfile
173+ working-directory : ./dapp-oeth
174+
175+ - run : yarn prettier:check
176+ working-directory : ./dapp-oeth
177+
159178 slither :
160179 name : " Slither"
161180 # As long as we need Python 3.6 here in the test, we can only use up to Ubuntu 20.
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ const DappLinks = ({ page }) => {
5050 </ a >
5151 </ Link >
5252 </ div >
53- { /*
5453 < div className = { `link-contain ${ page === 'history' ? 'selected' : '' } ` } >
5554 < Link href = { adjustLinkHref ( '/history' ) } >
5655 < a
@@ -62,7 +61,6 @@ const DappLinks = ({ page }) => {
6261 </ a >
6362 </ Link >
6463 </ div >
65- */ }
6664 </ div > { ' ' }
6765 < style jsx > { `
6866 .link-contain {
You can’t perform that action at this time.
0 commit comments