fix readme #355
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/[email protected] | |
- name: Set up node | |
uses: actions/[email protected] | |
with: | |
node-version: 'lts/*' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Generate types | |
run: yarn typechain | |
- name: Run lint | |
run: yarn lint | |
- name: Run tests | |
run: yarn test | |
- name: Run tests | |
run: yarn test:e2e | |
env: | |
PROVIDERS_URLS: ${{ secrets.PROVIDERS_URLS }} | |
CHAIN_ID: ${{ secrets.CHAIN_ID }} |