Skip to content

build(deps-dev): bump husky from 9.0.6 to 9.0.7 (#260) #890

build(deps-dev): bump husky from 9.0.6 to 9.0.7 (#260)

build(deps-dev): bump husky from 9.0.6 to 9.0.7 (#260) #890

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci --prefer-offline
- name: Run ESLint
run: npm run lint
- name: Type check
run: npm run lint:tsc
- name: Run unit tests
run: npm run test:ci
- name: Codecov
uses: codecov/codecov-action@v3
- name: Run module tests
run: npm run test:esm
- name: Build package
run: npm run build