Skip to content

updated subgraph script #21

updated subgraph script

updated subgraph script #21

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
- staging
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Test
run: yarn test