forked from across-protocol/relayer
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
132 additions
and
134 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "" | ||
labels: "type: bug" | ||
assignees: "" | ||
--- | ||
|
||
### Expected behavior | ||
|
||
### Actual behavior | ||
|
||
### Steps to reproduce | ||
|
||
### Which version(s) does this affect? (Environment, OS, etc...) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Feature request | ||
about: Propose an idea for new improvements/features | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
### Description | ||
|
||
Please describe what functionality is needed | ||
|
||
### Motivation | ||
|
||
Please describe why it is needed | ||
|
||
### Additional Information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Feature specification | ||
about: Specification of new features/improvements | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
### Description | ||
|
||
Please describe the specification of new features/improvements | ||
|
||
### Acceptance Criteria | ||
|
||
Please describe the conditions which must be met for this issue to close | ||
|
||
### Additional Information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
### What was the problem? | ||
|
||
This PR resolves #INSERT_ISSUE_NUMBER | ||
|
||
### How was it solved? | ||
|
||
<!--- Please describe your technical implementation --> | ||
|
||
### How was it tested? | ||
|
||
<!--- Please describe how you tested your changes --> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: "PR" | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build-and-test: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 # `yarn test` takes longer time | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Use Node.js 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: Install yarn | ||
run: npm install --global yarn | ||
- name: Install dependencies | ||
shell: bash | ||
run: yarn --prefer-offline | ||
- name: Build | ||
shell: bash | ||
run: yarn build | ||
- run: yarn format | ||
- name: Check format | ||
run: | | ||
if [ -z "$(git status --untracked-files=no --porcelain)" ]; then | ||
echo "All files formatted" | ||
else | ||
echo "Running format is required" | ||
exit 1 | ||
fi | ||
- run: yarn test |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,41 @@ | ||
# Folders | ||
node_modules | ||
artifacts | ||
cache | ||
coverage* | ||
gasReporterOutput.json | ||
dist | ||
typechain* | ||
|
||
# Files | ||
LICENCE | ||
CODEOWNERS | ||
gasReporterOutput.json | ||
deployments/mainnet/.chainId | ||
src/monitor/.env.sample | ||
Dockerfile | ||
|
||
# project specific paths | ||
dist/ | ||
|
||
## ignore files | ||
.*ignore | ||
|
||
# Ignore extensions | ||
*.env | ||
*.png | ||
*.sql | ||
*.sh | ||
*.html | ||
*.info | ||
*.xml | ||
*.log | ||
*.proto | ||
*.csv | ||
*.cmd | ||
*.tsbuildinfo | ||
*.blob | ||
*.lock | ||
*.keep | ||
*.txt | ||
|
||
# env example files | ||
*.env.example |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters