Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/batch burn #1051

Merged
merged 12 commits into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ on:
push:
branches:
- main
- develop
# Or when a pull request event occurs for a pull request against one of the
# matched branches.
pull_request:
branches:
- main
- develop
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand Down Expand Up @@ -62,7 +64,7 @@ jobs:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-87bc53fc6c874bd4c92d97ed180b949e3a36d78c
version: nightly-bff4ed912bb023d7bf9b20eda581aa4867a1cf70
- name: Install
run: |
yarn install --immutable
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/deploy-graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
# A push occurs to one of the matched branches.
push:
branches:
- main
- main
- develop
paths:
- graph/**
# Allows you to run this workflow manually from the Actions tab
Expand All @@ -34,5 +35,9 @@ jobs:
run: yarn install --immutable
- name: Build the subgraph
run: yarn build:graph
- name: Deploy the subgraph
run: yarn deploy:graph
- name: Deploy the subgraph to goerli testnet
if: github.ref == 'refs/heads/develop'
run: yarn deploy:graph:goerli
- name: Deploy the subgraph to Optimism mainnet
if: github.ref == 'refs/heads/main'
run: yarn deploy:graph:optimism
2 changes: 2 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ on:
push:
branches:
- main
- develop
# Or when a pull request event occurs for a pull request against one of the
# matched branches.
pull_request:
branches:
- main
- develop
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand Down
10 changes: 10 additions & 0 deletions .lintstagedignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# root config
playwright.config.ts

# patterns
graph/generated/
e2e
docs
vendor
2 changes: 1 addition & 1 deletion .lintstagedrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"**/*.{js,jsx,ts,tsx,sol}": [
"eslint --ignore-path .gitignore --ignore-pattern sdk/ --ignore-pattern graph/generated/",
"eslint --ignore-path .gitignore --ignore-path .lintstagedignore",
"prettier --write"
],
"**/*.{md,json}": ["prettier --write"]
Expand Down
Loading
Loading