Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfschoen committed Feb 23, 2023
2 parents acf8115 + e50c65b commit 222f1fd
Show file tree
Hide file tree
Showing 456 changed files with 16,064 additions and 26,922 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# they will be requested for review when someone opens a pull request.
* @AhmedKorim @AtelyPham @devpavan04
* @AtelyPham @devpavan04
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/UI_update_template.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
name: UI Update
about: Description of UI improvement
title: ''
labels: ''
assignees: ''
title: '[UI] '
labels: 'design-system 🎨'
assignees: '@monaiuu @seeddisperser'

---

Expand Down
80 changes: 48 additions & 32 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,54 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
title: '[BUG] '
labels: 'bug 🪲'
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
<!--- Provide a general summary of the issue in the Title above -->

## Expected Behavior
<!--- Tell us what should happen -->

### Current Behavior
<!--- Tell us what happens instead of the expected behavior -->

### Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->

## Steps to Reproduce
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1.
2.
3.
4.

### Screenshot
<!--- Not obligatory, but a screenshot or recording would be helpful -->

### Log output
<!-- Please paste the log output derived from the error. -->
<details>
<summary>Log Output</summary>

```Paste log output here
paste log output...
```
</details>

## Context (Environment)
<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->

<!--- Provide a general summary of the issue in the Title above -->

### Browsers Affected
<!-- Check all that apply -->
- [ ] Chrome
- [ ] Firefox
- [ ] Edge
- [ ] Safari 11
- [ ] Safari 10
- [ ] IE 11
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
blank_issues_enabled: true
contact_links:
- name: Webb Telegram
url: https://t.me/webbprotocol
about: Please ask questions here.
- name: Webb Discord Server
url: https://discord.com/invite/cv8EfJu3Tn
about: Please ask and answer questions here.
- name: Webb Feedback Discussion
url: https://github.com/webb-tools/feedback/discussions/categories/webb-dapp-feedback
about: Please provide feedback and discussion here.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
title: '[FEAT] '
labels: 'feature ➕'
assignees: ''

---
Expand Down
18 changes: 16 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
## Summary of changes
_Provide a detailed description of proposed changes._
-

### Proposed area of change
_Put an `x` in the boxes that apply._

- [ ] `apps/bridge-dapp`
- [ ] `apps/stats-dapp`
- [ ] `apps/webbsite`
- [ ] `libs/webb-ui-components`

### Reference issue to close (if applicable)
_Specify any issues that can be closed from these changes (e.g. Closes #233)._
- Closes

### Screen Recording
_If possible provide a screen recording of proposed change._


-----
### Code Checklist
_Please be sure to add .stories documentation if any additions are made to `libs/webb-ui-components`._

- [ ] Tested
- [ ] Documented
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] I have added necessary documentation (if appropriate)
14 changes: 13 additions & 1 deletion .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: build 🏗️
on:
pull_request:
branches: [develop, staging, main]
push:
push:
branches: [develop, staging, main]

workflow_dispatch:
Expand All @@ -16,11 +16,23 @@ jobs:
matrix:
node-version: [16.x]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: create env file
run: |
touch .env
echo PRIVACY_POLICY_PAGE_ID=${{ secrets.PRIVACY_POLICY_PAGE_ID }} >> .env
echo TERMS_AND_CONDITIONS_PAGE_ID=${{ secrets.TERMS_AND_CONDITIONS_PAGE_ID }} >> .env
echo NOTION_TOKEN_V2=${{ secrets.NOTION_TOKEN_V2 }} >> .env
echo NOTION_ACTIVE_USER=${{ secrets.NOTION_ACTIVE_USER }} >> .env
echo NX_BRIDGE_APP_DOMAIN=${{ secrets.NX_BRIDGE_APP_DOMAIN }} >> .env
- name: build
run: |
yarn install
Expand Down
45 changes: 43 additions & 2 deletions .github/workflows/check-lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: lint 🧹
name: clean 🧹

on:
pull_request:
Expand All @@ -8,12 +8,16 @@ on:

jobs:
lint:
name: run
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand All @@ -23,3 +27,40 @@ jobs:
run: |
yarn install
yarn nx run-many --all --target=lint
format:
name: format
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: prettier
run: |
yarn install
yarn format:check
links:
name: links
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Link Checker
uses: lycheeverse/[email protected]
with:
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 4 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
security-events: write

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout repository
uses: actions/checkout@v3
with:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/deploy-bridge-dapp-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
matrix:
node-version: [16.x]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand All @@ -29,6 +33,11 @@ jobs:
- name: Install dependencies
run: yarn install

- name: create env file
run: |
touch .env
echo NX_BRIDGE_APP_DOMAIN=${{ secrets.NX_BRIDGE_APP_DOMAIN }} >> .env
- name: Build project
run: yarn nx build bridge-dapp

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy-stats-dapp-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
matrix:
node-version: [16.x]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand Down
Loading

0 comments on commit 222f1fd

Please sign in to comment.