Skip to content

chore: adopt anvil v0.8 workflow_dispatch bridge #111

chore: adopt anvil v0.8 workflow_dispatch bridge

chore: adopt anvil v0.8 workflow_dispatch bridge #111

Workflow file for this run

name: CI
on:
push:
branches: [main, dev, 'feat/**', 'fix/**', 'chore/**']
pull_request:
branches: [main, dev]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run typecheck
- run: npm run build
- run: npm test