Skip to content

Commit 31a3d65

Browse files
committed
Merge upstream
2 parents 39704e8 + 88be282 commit 31a3d65

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.github/workflows/defi.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff 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.

dapp-oeth/src/components/Nav.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)