Skip to content

build: files to publish, bump deps #7

build: files to publish, bump deps

build: files to publish, bump deps #7

name: Docs Pull Request
on:
pull_request:
branches:
- main
paths:
- ".github/workflows/docs-pull-request.yml"
- "docs/**"
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/docs
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/docs
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: ./docs/Dockerfile
tags: image:latest
cache-from: type=gha
cache-to: type=gha,mode=max