Skip to content

chore: convert repo into a yarn workspaces monorepo #641

chore: convert repo into a yarn workspaces monorepo

chore: convert repo into a yarn workspaces monorepo #641

Workflow file for this run

name: [contracts] Run CI tests

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax
env:
CI: true
on:
push:
branches: [main]
paths:
- packages/contracts/**
pull_request: {}
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up environment
uses: ./.github/actions/setup
- name: Run tests
run: yarn test:coverage
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.json
flags: unittests
name: graphprotocol-contracts
fail_ci_if_error: true