Skip to content

Revert "feat(gql): use wallet for owner_address when available for … #1612

Revert "feat(gql): use wallet for owner_address when available for …

Revert "feat(gql): use wallet for owner_address when available for … #1612

Workflow file for this run

name: Node.js CI
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
id: node_version
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- name: Set Up node
uses: actions/setup-node@v2
with:
node-version: ${{ steps.node_version.outputs.NODE_VERSION }}
cache: 'yarn'
- name: Install dependencies
run: yarn --immutable --immutable-cache
- name: Test and Build Codebase
run: yarn ci