Skip to content

deps(global): bump @graphql-mesh/http from 0.106.35 to 0.106.41 #207

deps(global): bump @graphql-mesh/http from 0.106.35 to 0.106.41

deps(global): bump @graphql-mesh/http from 0.106.35 to 0.106.41 #207

name: Examples
on:
pull_request:
branches:
- main
- dev
- release/*
push:
branches:
- main
- dev
- release/*
permissions: {} # lock everything by default (least-privilege)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FOUNDRY_PROFILE: ci
jobs:
build-examples:
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: examples
steps:
- name: Check out the repo
uses: actions/checkout@v6
with:
submodules: recursive
- name: Setup environment
uses: ./.github/actions/setup-env
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Show Foundry config
run: forge config
- name: Build Example Contracts
run: forge build
- name: Add build summary
run: |
echo "## Build result" >> $GITHUB_STEP_SUMMARY
echo "✅ Examples Built Successfully" >> $GITHUB_STEP_SUMMARY
test-contracts-examples:
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: examples
env:
FOUNDRY_FUZZ_RUNS: 1000
needs: build-examples
steps:
- name: Check out the repo
uses: actions/checkout@v6
with:
submodules: recursive
- name: Setup environment
uses: ./.github/actions/setup-env
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Run the unit tests
run: forge test
- name: Add test summary
run: |
echo "## Smart contracts examples unit tests result" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY