Skip to content

Commit

Permalink
Merge pull request #170 from cgewecke/beta
Browse files Browse the repository at this point in the history
v2.0
  • Loading branch information
cgewecke committed Mar 14, 2024
2 parents 373412d + 0b6ef22 commit 814bba9
Show file tree
Hide file tree
Showing 144 changed files with 11,862 additions and 8,911 deletions.
25 changes: 0 additions & 25 deletions .circleci/config.yml

This file was deleted.

1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test/projects/viem/artifacts/**
50 changes: 50 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches:
- "**"
workflow_dispatch:

env:
CMC_API_KEY: ${{ secrets.CMC_API_KEY }}
POLYGONSCAN_API_KEY: ${{ secrets.POLYGONSCAN_API_KEY }}
ALCHEMY_TOKEN: ${{ secrets.ALCHEMY_TOKEN }}
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
OPTIMISTIC_API_KEY: ${{ secrets.OPTIMISTIC_API_KEY }}

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn
- run: yarn lint

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn
- run: yarn build

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn
- run: yarn test
36 changes: 28 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,33 @@ typings/
.next

# hardhat-project
test/hardhat-truffle-project/artifacts
test/hardhat-truffle-project/cache
test/hardhat-ethers-project/artifacts
test/hardhat-ethers-project/cache
test/hardhat-waffle-project/artifacts
test/hardhat-waffle-project/cache
test/hardhat-forked-project/artifacts
test/hardhat-forked-project/cache
test/projects/options/artifacts
test/projects/options/cache
test/projects/options/gasReporterOutput.json
test/projects/options/gas.json
test/projects/options/testGasReport.txt

test/projects/waffle/artifacts
test/projects/waffle/cache
test/projects/waffle/gasReporterOutput.json

test/projects/forked/artifacts
test/projects/forked/cache
test/projects/forked/gasReporterOutput.json

test/projects/viem/artifacts
test/projects/viem/cache
test/projects/viem/gasReporterOutput.json

test/projects/oz/artifacts
test/projects/oz/cache
test/projects/oz/gasReporterOutput.json

test/projects/run/artifacts
test/projects/run/cache
test/projects/run/gasReporterOutput.json

dist/

options.txt

7 changes: 7 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"require" : [
"dotenv/config",
"ts-node/register",
"source-map-support/register"
]
}
295 changes: 135 additions & 160 deletions README.md

Large diffs are not rendered by default.

Loading

0 comments on commit 814bba9

Please sign in to comment.