Skip to content

fix: replace ethcall with own fork that includes filecoin check for f… #262

fix: replace ethcall with own fork that includes filecoin check for f…

fix: replace ethcall with own fork that includes filecoin check for f… #262

Workflow file for this run

name: Unit Tests
on:
push:
workflow_dispatch:
jobs:
tests:
name: Unit tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Get Current Pull Request
uses: 8BitJonny/[email protected]
id: pr
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
filterOutClosed: true
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 16
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: yarn install
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Runs a single command using the runners shell
- name: Run tests
run: yarn test