Skip to content

Update subgraph dependencies #2929

Update subgraph dependencies

Update subgraph dependencies #2929

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install -g yarn
- run: yarn
- run: yarn build
- name: Uninstall Yarn
if: always()
run: npm uninstall -g yarn