Skip to content

test auto commit workflow #33

test auto commit workflow

test auto commit workflow #33

Workflow file for this run

name: test
on:
workflow_dispatch:
pull_request:
env:
FOUNDRY_PROFILE: ci
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn
- uses: onbjerg/foundry-toolchain@v1
- name: format
run: forge fmt
- name: test
run: forge test --ffi -vvv
- name: snapshot
run: forge snapshot
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_user_name: justinbram
commit_message: "style & snapshot"