Skip to content

chore: bump lerna from 6.6.2 to 7.2.0 #222

chore: bump lerna from 6.6.2 to 7.2.0

chore: bump lerna from 6.6.2 to 7.2.0 #222

Workflow file for this run

name: Node CI
on:
# Trigger the workflow manually via the GitHub UI
workflow_dispatch:
# Trigger the workflow when a pull_request's activity type is opened,
# synchronize, or reopened.
pull_request:
# Trigger the workflow on push
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run:
yarn --prefer-offline --frozen-lockfile --no-progress --silent
--ignore-engines
- run: yarn lint
- run: yarn test