Skip to content

Bump lerna from 8.1.2 to 8.1.3 #1926

Bump lerna from 8.1.2 to 8.1.3

Bump lerna from 8.1.2 to 8.1.3 #1926

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
test:
name: Test on node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [18, 20, 21]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
registry-url: https://registry.npmjs.org
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Bootstrap
run: yarn bootstrap
- name: Build
run: yarn build
- name: Bundle
run: yarn bundle
- name: Lint
run: yarn lint
- name: Test
run: yarn test