trustless-generic-relayer/.github/workflows/test.yaml

79 lines
2.2 KiB
YAML
Raw Normal View History

name: Test
on:
pull_request:
2023-01-18 12:59:35 -08:00
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
forge-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout trustless-generic-relayer
uses: actions/checkout@v3
- name: Checkout wormhole
uses: actions/checkout@v3
with:
repository: wormhole-foundation/wormhole
path: ethereum/wormhole
ref: feat/batch_vaa_alternative
- uses: actions/setup-node@v3
with:
node-version: 18
2023-01-18 12:27:37 -08:00
cache: "npm"
cache-dependency-path: |
ethereum/package-lock.json
ethereum/wormhole/ethereum/package-lock.json
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Run forge unit tests
run: |
cd ethereum
make unit-test
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Check that contracts are formatted
run: |
cd ethereum
forge fmt --check
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout trustless-generic-relayer
uses: actions/checkout@v3
- name: Checkout wormhole
uses: actions/checkout@v3
with:
repository: wormhole-foundation/wormhole
path: ethereum/wormhole
ref: feat/batch_vaa_alternative
- uses: actions/setup-node@v3
with:
node-version: 18
2023-01-18 12:27:37 -08:00
cache: "npm"
cache-dependency-path: |
ethereum/package-lock.json
ethereum/wormhole/ethereum/package-lock.json
relayer_engine/package-lock.json
sdk/package-lock.json
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Generate contract typechain typings
run: |
cd ethereum
make build
- run: cd sdk && npm ci
- name: Typecheck ethereum/ts-scripts
run: |
cd ethereum
npm ci
npx tsc --noEmit --project ts-scripts
- name: Typecheck relayer engine plugin
run: |
cd relayer_engine
npm ci
npx tsc --noEmit --project tsconfig.json