Skip to content

ci: remove comment #262

ci: remove comment

ci: remove comment #262

Workflow file for this run

name: Contracts Tests
on:
workflow_dispatch:
workflow_call:
secrets:
INFURA_API_KEY:
required: true
push:
jobs:
formatting-linting:
uses: ./.github/workflows/formatting-linting.yml
tests:
runs-on: 'ubuntu-latest'
defaults:
run:
working-directory: contracts
steps:
- name: 'Check out the repo'
uses: 'actions/checkout@v3'
- name: 'Install Node.js'
uses: 'actions/setup-node@v3'
with:
cache: 'yarn'
node-version: 18
- name: 'Install the dependencies'
run: 'yarn install --frozen-lockfile'
- name: 'Build the contracts'
run: 'yarn build'
env:
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
- name: 'Build the typechain'
run: 'yarn typechain'
env:
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
- name: 'Test the contracts and generate the coverage report'
run: 'yarn coverage >> $GITHUB_STEP_SUMMARY'
env:
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}