Skip to content

feat(core): expose get transaction method | /workflows/cd #41

feat(core): expose get transaction method | /workflows/cd

feat(core): expose get transaction method | /workflows/cd #41

Workflow file for this run

name: ethers-core-ci
on:
push:
branches:
- main
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm
- name: Setup Node.js
uses: actions/setup-node@master
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Install dependencies for utils wrap
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
working-directory: ./wraps/utils
- name: Build utils wrap
run: yarn build
working-directory: ./wraps/utils
- name: Install dependencies for core wrap
run: yarn install --nonInteractive --frozen-lockfile --prefer-offline
working-directory: ./wraps/core
- name: Build core wrap
run: yarn build
working-directory: ./wraps/core
- name: Test core wrap
run: yarn test
working-directory: ./wraps/core