Skip to content

Bump lerna from 6.6.2 to 7.4.2 #1515

Bump lerna from 6.6.2 to 7.4.2

Bump lerna from 6.6.2 to 7.4.2 #1515

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: NPM Install & lerna Bootstrap
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
if: ${{ matrix.node-version != 'latest' || github.ref_name != 'master' }}
run: npm test
- name: Test & Report coverage
if: ${{ matrix.node-version == 'latest' && github.ref_name == 'master' }}
run: npm run report