Skip to content

Update devDependencies #2892

Update devDependencies

Update devDependencies #2892

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install yarn
run: npm install -g yarn
- name: install
run: yarn
- name: bootstrap
run: yarn lerna bootstrap
- name: build
run: yarn ci:build
- name: lint
run: yarn ci:lint
- name: test
run: yarn ci:test