Skip to content

chore(deps): bump jsonpath from 1.1.1 to 1.2.1 #35

chore(deps): bump jsonpath from 1.1.1 to 1.2.1

chore(deps): bump jsonpath from 1.1.1 to 1.2.1 #35

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
env:
FOUNDRY_PROFILE: ci
jobs:
check:
name: Build contracts and run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Show Forge version
run: forge --version
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '23'
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn
- name: Check formatting
run: yarn format:check
- name: Build contracts
run: yarn build:contract