Skip to content

Bumped Lerna from 6.x to 8.x. Removed lerna bootstrap since it … #354

Bumped Lerna from 6.x to 8.x. Removed lerna bootstrap since it …

Bumped Lerna from 6.x to 8.x. Removed lerna bootstrap since it … #354

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- '**/README.md'
pull_request:
paths-ignore:
- '**/README.md'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version:
- 18.x
- 20.x
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Check out repository
uses: actions/checkout@v3
- name: Install dependencies
run: |
npm install
npx lerna exec -- npm i
- name: Build project
run: npm run build