Skip to content

build(deps): bump diff from 4.0.2 to 4.0.4 #1676

build(deps): bump diff from 4.0.2 to 4.0.4

build(deps): bump diff from 4.0.2 to 4.0.4 #1676

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 21.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Important! Enables git history for lerna
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Npm install
run: npm install
- name: Build all packages
run: npm run build
- name: Run tests for changed packages
run: npx lerna run test --since origin/master --stream --concurrency 1
env:
CI: true