Skip to content

chore(deps): update storybook monorepo to v8 (major) #796

chore(deps): update storybook monorepo to v8 (major)

chore(deps): update storybook monorepo to v8 (major) #796

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
ci:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v3
with:
node-version: "16"
cache: yarn
- run: yarn install --check-files --frozen-lockfile --non-interactive
- run: yarn lint
- id: format
run: |
yarn format
echo "RESULT=$(git diff --shortstat)" >> $GITHUB_OUTPUT
- if: steps.format.outputs.RESULT != ''
run: |
git -c "user.name=${{ github.actor }}" -c "user.email=${{ github.actor }}@users.noreply.github.com" commit -a -m "bot: format"
git push origin HEAD