Skip to content

feat(claim-name): handle no fund more gracefully #33

feat(claim-name): handle no fund more gracefully

feat(claim-name): handle no fund more gracefully #33

Workflow file for this run

name: Branch CI
on:
push:
branches-ignore:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run test
- name: Run build
run: npm run build