Skip to content

add initial version of standalone amm page #431

add initial version of standalone amm page

add initial version of standalone amm page #431

Workflow file for this run

name: test
on:
push:
branches:
- main
paths:
- "apps/pool-metadata/contracts/**"
pull_request:
paths:
- "apps/pool-metadata/contracts/**"
env:
FOUNDRY_PROFILE: ci
defaults:
run:
shell: bash
working-directory: ./apps/pool-metadata/contracts
jobs:
foundry:
name: Foundry project
runs-on: ubuntu-latest
strategy:
fail-fast: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: ./.github/workflows/setup-pnpm
with:

Check failure on line 36 in .github/workflows/contracts-test.yml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/contracts-test.yml (Line: 36, Col: 14): Unexpected value '' .github/workflows/contracts-test.yml (Line: 37, Col: 9): Unexpected value 'npm_token'
npm_token: ${{ secrets.NPM_TOKEN }}
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: Run Forge tests
run: |
forge test -vvv
id: forge-test