Skip to content

build(deps-dev): bump lint-staged from 15.2.2 to 15.2.4 #1101

build(deps-dev): bump lint-staged from 15.2.2 to 15.2.4

build(deps-dev): bump lint-staged from 15.2.2 to 15.2.4 #1101

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@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Run module tests
run: npm run test:esm
- name: Build package
run: npm run build