Skip to content

chore(deps): bump lodash from 4.17.23 to 4.18.1 #107

chore(deps): bump lodash from 4.17.23 to 4.18.1

chore(deps): bump lodash from 4.17.23 to 4.18.1 #107

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check formatting
run: yarn format:check
- name: Build
run: yarn build
- name: Test
run: yarn test