Skip to content

chore(deps): bump the npm-minor-and-patch group across 1 directory with 43 updates #85

chore(deps): bump the npm-minor-and-patch group across 1 directory with 43 updates

chore(deps): bump the npm-minor-and-patch group across 1 directory with 43 updates #85

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npx tsc --noEmit
- name: Build
run: npm run build