Skip to content

Commit

Permalink
chore: disable subgraph test in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gaboesquivel committed Jan 29, 2024
1 parent 1eaf5fe commit 5dc7347
Showing 1 changed file with 25 additions and 14 deletions.
39 changes: 25 additions & 14 deletions .github/workflows/subgraph-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches:
- '**'
jobs:
build_and_test:
echo:
name: Build and Test
runs-on: ubuntu-latest
steps:
Expand All @@ -17,16 +17,27 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install yarn
run: npm install -g yarn
- run: yarn install
- run: yarn build
- name: Prepare subgraph yaml
run: yarn prepare:mainnet
- name: Generate Code
run: yarn codegen
- name: Run tests
run: yarn test
- name: Uninstall Yarn
if: always()
run: npm uninstall -g yarn
- name: echo
run: echo 'wip'
# build_and_test:
# name: Build and Test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Use Node.js 16.x
# uses: actions/setup-node@v3
# with:
# node-version: 16.x
# - name: Install yarn
# run: npm install -g yarn
# - run: yarn install
# - run: yarn build
# - name: Prepare subgraph yaml
# run: yarn prepare:mainnet
# - name: Generate Code
# run: yarn codegen
# - name: Run tests
# run: yarn test
# - name: Uninstall Yarn
# if: always()
# run: npm uninstall -g yarn

0 comments on commit 5dc7347

Please sign in to comment.