Skip to content

chore: Monorepo style #59

chore: Monorepo style

chore: Monorepo style #59

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: "Test"
command: "test"
- name: "Lint"
command: "lint"
- name: "Stylelint"
command: "stylelint"
- name: "Build"
command: "build"
- name: "Build Storybook"
command: "build-storybook"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup
with:
npm_token: ${{secrets.npm_token}}
- name: ${{matrix.name}}
shell: bash
run: yarn lerna run ${{matrix.command}} --since=origin/master