Skip to content

initialize amended fork from uni #1

initialize amended fork from uni

initialize amended fork from uni #1

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
# manual trigger
workflow_dispatch:
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
registry-url: https://registry.npmjs.org
- run: yarn install --frozen-lockfile
- run: yarn contracts:compile
- name: Unit tests
run: yarn test
env:
INFURA_PROJECT_ID: ${{ secrets.INFURA_PROJECT_ID }}
INFURA_PROJECT_SECRET: ${{ secrets.INFURA_PROJECT_SECRET }}
- name: Integration tests
run: yarn test:e2e
env:
INFURA_PROJECT_ID: ${{ secrets.INFURA_PROJECT_ID }}
INFURA_PROJECT_SECRET: ${{ secrets.INFURA_PROJECT_SECRET }}
- name: Typechecking
run: yarn build