docs: add core and react docs, update README and changelogs #4
Workflow file for this run
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: "@sandwich-ui/react-storybook Pull Request" | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/react-storybook-pull-request.yml" | |
- "packages/react-storybook/**" | |
- "packages/react/**" | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
name: Setup | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup environment | |
uses: ./.github/actions/setup-env | |
build: | |
needs: setup | |
runs-on: ubuntu-latest | |
name: Build | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup environment | |
uses: ./.github/actions/setup-env | |
- name: Build | |
run: pnpm build --filter @sandwich-ui/react-storybook | |
lint: | |
needs: setup | |
runs-on: ubuntu-latest | |
name: Analyze | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup environment | |
uses: ./.github/actions/setup-env | |
- name: Lint | |
run: pnpm lint --filter @sandwich-ui/react-storybook | |
docker: | |
runs-on: ubuntu-latest | |
name: Build Docker Image | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: false | |
file: ./packages/react-storybook/Dockerfile | |
tags: image:latest | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |