Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
karanpargal committed Apr 18, 2024
2 parents 1cebb2e + d09bc66 commit 790a275
Show file tree
Hide file tree
Showing 22 changed files with 4,169 additions and 33 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/lint-testing.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
types: [opened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: 'Create env file'
run: echo "${{ secrets.ENV_FILE }}" > .env
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test
Original file line number Diff line number Diff line change
Expand Up @@ -1860,4 +1860,4 @@
"stateMutability": "payable",
"type": "function"
}
]
]
Loading

0 comments on commit 790a275

Please sign in to comment.