build(deps): bump @graphprotocol/graph-cli from 0.83.0 to 0.88.0 in /subgraph #231
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dapp CI | |
on: | |
pull_request: | |
branches: [ master ] | |
push: | |
branches: [ master ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install node_modules | |
working-directory: ./ | |
run: yarn dapp install | |
- name: Run Biome | |
working-directory: ./ | |
run: yarn dapp format; yarn dapp lint; | |
- name: Build checks | |
env: # Or as an environment variable | |
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | |
VITE_GRAPHQL_ENDPOINT: https://api.ghostlogs.xyz/gg/pub/d94bdadc-4cf4-44a1-9888-c8be5ab887fc/ghostgraph | |
working-directory: ./ | |
run: yarn dapp build; |