Skip to content

⬆️ Bump lodash from 4.17.21 to 4.17.23 #24

⬆️ Bump lodash from 4.17.21 to 4.17.23

⬆️ Bump lodash from 4.17.21 to 4.17.23 #24

Workflow file for this run

name: CI
on:
push:
branches:
- development
pull_request:
workflow_dispatch:
jobs:
lint-and-audit:
name: Lint & Security Audit
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Run lint
run: yarn run lint
- name: Run security audit
run: yarn run audit