Skip to content

chore(repo): promote contracts to root and update CI #3

chore(repo): promote contracts to root and update CI

chore(repo): promote contracts to root and update CI #3

Workflow file for this run

# NOTE: This name appears in GitHub's Checks API and in workflow's status badge.
name: ci-default
env:
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
# Trigger the workflow when:
on:
pull_request:
branches:
- "main"
- "dev"
push:
branches:
- "main"
- "dev"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Cancel in progress jobs on new pushes.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
# NOTE: This name appears in GitHub's Checks API.
name: test
environment: testing
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# Check out pull request's HEAD commit instead of the merge commit to
# prevent gitlint from failing due to too long commit message titles,
# e.g. "Merge 3e621938d65caaa67f8e35d145335d889d470fc8 into 19a39b2f66cd7a165082d1486b2f1eb36ec2354a".
ref: ${{ github.event.pull_request.head.sha }}
# Fetch all history so gitlint can check the relevant commits.
fetch-depth: "0"
submodules: "recursive"
- run: corepack enable
- name: Set up Node.js 18
uses: actions/setup-node@v4
with:
cache: "pnpm"
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install dependencies
run: |
pnpm i
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Build packages
run: |
pnpm build
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Lint code
run: |
pnpm lint
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Test contracts
run: |
pnpm test
# Always run this step so that all linting errors can be seen at once.
if: always()