Skip to content

chore(deps): bump lodash from 4.17.21 to 4.17.23 #31

chore(deps): bump lodash from 4.17.21 to 4.17.23

chore(deps): bump lodash from 4.17.21 to 4.17.23 #31

Workflow file for this run

name: check
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check:
name: Build & Lint & Test
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: |
npm ci
- name: Build
run: |
npm run build
npm run build:benchmarks
- name: Check
run: |
npm run check
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Test
run: npm run test:ci
env:
CI: true
- name: Upload code coverage
uses: codecov/codecov-action@v4
if: matrix.node-version == '22.x'