mirror of
https://github.com/joinmarket-webui/jam.git
synced 2026-08-19 13:18:30 +02:00
initialize Jam V2
Co-authored-by: theborakompanioni <theborakompanioni+github@gmail.com>
This commit is contained in:
parent
92bf282aa7
commit
ee5ea32379
311 changed files with 11146 additions and 52111 deletions
21
.github/ISSUE_TEMPLATE/bug_report.md
vendored
21
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
|
@ -4,7 +4,6 @@ about: Create a report to help us improve
|
|||
title: ''
|
||||
labels: 'bug'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
Hey there! Thank you for reporting an issue – your feedback is invaluable to open-source software development, and all contributions are greatly appreciated.
|
||||
|
|
@ -12,14 +11,14 @@ Hey there! Thank you for reporting an issue – your feedback is invaluable to o
|
|||
🚨 Important warning: Be cautious of scammers in the comments. 🚨
|
||||
|
||||
Red flags to watch out for:
|
||||
|
||||
- Requests to email "official support" or links to external websites
|
||||
- Responses from recently created accounts, often lacking profile pictures
|
||||
- Inquiries for personal information that is not relevant to resolving your issue
|
||||
|
||||
As long as you avoid sharing sensitive information (such as your seed phrase), you should be safe.
|
||||
As long as you avoid sharing sensitive information (such as your seed phrase), you should be safe.
|
||||
However, it's best to avoid engaging with any suspicious comments.
|
||||
|
||||
|
||||
**Expected behavior**
|
||||
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
|
@ -29,17 +28,19 @@ A clear and concise description of what you expected to happen.
|
|||
A clear and concise description of what the bug is and what actually happens.
|
||||
|
||||
**Steps to reproduce the problem**
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
|
||||
**Specifications**
|
||||
- Version:
|
||||
- Platform:
|
||||
- Browser:
|
||||
|
||||
- Version:
|
||||
- Platform:
|
||||
- Browser:
|
||||
|
||||
**Additional context**
|
||||
|
||||
Add any other context about the problem here to help explain your problem, e.g. error logs or screenshots if applicable.
|
||||
Add any other context about the problem here to help explain your problem, e.g. error logs or screenshots if applicable.
|
||||
|
||||
⚠️ Make sure to remove any sensitive information before sharing screenshots or logs. ⚠️
|
||||
|
|
|
|||
5
.github/ISSUE_TEMPLATE/feature_request.md
vendored
5
.github/ISSUE_TEMPLATE/feature_request.md
vendored
|
|
@ -4,7 +4,6 @@ about: Suggest an idea
|
|||
title: ''
|
||||
labels: 'enhancement'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
Hey there! Thank you for proposing a new feature – your feedback is invaluable to open-source software development, and all contributions are greatly appreciated.
|
||||
|
|
@ -12,14 +11,14 @@ Hey there! Thank you for proposing a new feature – your feedback is invaluable
|
|||
🚨 Important warning: Be cautious of scammers in the comments. 🚨
|
||||
|
||||
Red flags to watch out for:
|
||||
|
||||
- Requests to email "official support" or links to external websites
|
||||
- Responses from recently created accounts, often lacking profile pictures
|
||||
- Inquiries for personal information that is not relevant to resolving your issue
|
||||
|
||||
As long as you avoid sharing sensitive information (such as your seed phrase), you should be safe.
|
||||
As long as you avoid sharing sensitive information (such as your seed phrase), you should be safe.
|
||||
However, it's best to avoid engaging with any suspicious comments.
|
||||
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
|
||||
A clear and concise description of what the problem is. Example: I'm always frustrated when [...]
|
||||
|
|
|
|||
15
.github/workflows/build.yml
vendored
15
.github/workflows/build.yml
vendored
|
|
@ -28,9 +28,22 @@ jobs:
|
|||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
# Install
|
||||
- name: Install
|
||||
run: npm ci
|
||||
- name: Get installed Playwright version
|
||||
id: playwright-version
|
||||
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').dependencies['@playwright/test'].version)")" >> $GITHUB_ENV
|
||||
- name: Cache Playwright
|
||||
uses: actions/cache@v3
|
||||
id: playwright-cache
|
||||
with:
|
||||
path: |
|
||||
~/.cache/ms-playwright
|
||||
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
|
||||
- run: npx playwright install --with-deps
|
||||
if: steps.playwright-cache.outputs.cache-hit != 'true'
|
||||
- run: npx playwright install-deps
|
||||
if: steps.playwright-cache.outputs.cache-hit != 'true'
|
||||
# Checks
|
||||
- name: Lint
|
||||
run: npm run lint
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue