Skip to content

meta: bump husky from 9.1.4 to 9.1.5 #77

meta: bump husky from 9.1.4 to 9.1.5

meta: bump husky from 9.1.4 to 9.1.5 #77

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Format
run: npm run format
- name: Test
run: npm test
- name: Test with coverage
run: npm run test:coverage