Skip to content

Commit

Permalink
fix: Multiple issues (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
fzavalia authored Jul 19, 2023
1 parent 0dc5a69 commit 65c95da
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 16.x
- name: Set package.json version
uses: menduz/oddish-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/set-rollouts-manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

jobs:
set-manual-rollout:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2
- name: Set Rollout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/set-rollouts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [deployment_status]
jobs:
set-rollout:
if: ${{ github.event.deployment.task == 'upload-to-cdn' && github.event.deployment_status.state == 'success' }}
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2

Expand Down
10 changes: 10 additions & 0 deletions config-overrides.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const { override, babelInclude } = require('customize-cra')
const path = require('path')

module.exports = override([
babelInclude([
path.join(__dirname, 'src'),
path.join(__dirname, 'node_modules/@metamask/utils/node_modules/superstruct'),
path.join(__dirname, 'node_modules/@walletconnect'),
])
])
73 changes: 73 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,14 @@
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"customize-cra": "^1.0.0",
"react-app-rewired": "^2.2.1",
"typescript": "^4.4.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"postinstall": "node ./scripts/prebuild.js"
},
Expand All @@ -63,4 +65,4 @@
]
},
"homepage": ""
}
}

0 comments on commit 65c95da

Please sign in to comment.