Skip to content

feat(eth): replaced logic for obtaining HW address #3477

feat(eth): replaced logic for obtaining HW address

feat(eth): replaced logic for obtaining HW address #3477

Workflow file for this run

name: pull-request
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
pull-request:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.16]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install node.js v${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn
# TODO: enable once all lint issues are fixed
#- name: Lint code
# run: yarn ci:lint
- name: Build code
run: yarn ci:test:build
- name: Test package - components/core
run: yarn ci:test:core:components
- name: Test package - frontend
run: yarn ci:test:frontend