feat: replace subscan with kilt-indexer #2365
Workflow file for this run
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: Check pull request | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Configure package manager | |
uses: pnpm/action-setup@v4 | |
- name: Configure Node | |
uses: actions/setup-node@v4.0.3 | |
with: | |
node-version-file: 'package.json' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run linter | |
run: pnpm lint | |
- name: Run tests | |
run: pnpm test | |
- name: Build code | |
run: pnpm build |