Skip to content

refactor: standardize summit flag fields to booleans #7

refactor: standardize summit flag fields to booleans

refactor: standardize summit flag fields to booleans #7

Workflow file for this run

name: test-indexer
on:
pull_request:
paths:
- "indexer/**"
- "contracts/src/models/beast.cairo"
- ".github/workflows/test-indexer.yml"
push:
branches:
- main
paths:
- "indexer/**"
- "contracts/src/models/beast.cairo"
- ".github/workflows/test-indexer.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
indexer-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: indexer
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Type check
run: pnpm exec tsc --noEmit
- name: Build
run: pnpm build
- name: Run parity test
run: pnpm test:parity