Skip to content

chore(deps-dev): bump the dev-dependencies group with 4 updates (#53) #138

chore(deps-dev): bump the dev-dependencies group with 4 updates (#53)

chore(deps-dev): bump the dev-dependencies group with 4 updates (#53) #138

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run format:check
- run: npm run typecheck
- run: npm test
- run: npm run build