feat: add base kpi token preset contract #135
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup Node.js ${{matrix.node-version}} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{matrix.node-version}} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: | |
${{ runner.os }}-pnpm-store-${{ | |
hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Setup Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Install dependencies | |
run: pnpm install | |
- name: Lint | |
run: pnpm lint | |
- name: Test | |
if: | |
github.event_name != 'pull_request' && github.event_name != | |
'pull_request_target' | |
run: FOUNDRY_PROFILE=test forge test | |
- name: Test with gas report | |
if: | |
github.event_name == 'pull_request' || github.event_name == | |
'pull_request_target' | |
run: | |
FOUNDRY_PROFILE=test forge test --gas-report | tee | |
gasreport.ansi | |
- name: Compare gas reports | |
if: | |
github.event_name == 'pull_request' || github.event_name == | |
'pull_request_target' | |
id: gas_diff | |
uses: Rubilmax/foundry-gas-diff@v3.9 | |
with: | |
sortOrders: desc | |
ignore: tests/**/* | |
- name: Add gas diff to sticky comment | |
if: | |
github.event_name == 'pull_request' || github.event_name == | |
'pull_request_target' | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
delete: ${{!steps.gas_diff.outputs.markdown}} | |
message: ${{steps.gas_diff.outputs.markdown}} |