Skip to content

build(deps): bump lodash-es from 4.17.22 to 4.17.23 #1113

build(deps): bump lodash-es from 4.17.22 to 4.17.23

build(deps): bump lodash-es from 4.17.22 to 4.17.23 #1113

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@v6
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint:all
- name: Compile TypeScript
run: yarn tsc:full
- name: Run Tests
run: yarn test:all
- name: Run Audit
run: yarn audit --level high || true