chore(deps): update all non-major dependencies #6401
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'yarn' | |
- name: Monorepo init | |
run: yarn | |
- name: Build packages | |
run: yarn run lerna run build | |
- name: Continuous Integration for all packages | |
run: yarn run lerna run ci --stream | |
env: | |
CI: true |