mirror of
https://github.com/appium/appium.git
synced 2026-01-08 03:10:02 -06:00
54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
name: Build Docs
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '**/tsconfig*.json'
|
|
- '**/package*.json'
|
|
- '**/*mkdocs*.ya?ml'
|
|
- 'packages/docutils/requirements.txt'
|
|
- 'packages/*/README.md'
|
|
- 'packages/*/docs/**'
|
|
- 'packages/*/**/*.ts'
|
|
- 'packages/*/**/*.js'
|
|
- '.github/workflows/docs.yml' # this file
|
|
- '!**/test/**'
|
|
- '!**/sample-code/**'
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '**/tsconfig*.json'
|
|
- '**/package*.json'
|
|
- '**/*mkdocs*.ya?ml'
|
|
- 'packages/docutils/requirements.txt'
|
|
- 'packages/*/README.md'
|
|
- 'packages/*/docs/**'
|
|
- 'packages/*/**/*.ts'
|
|
- 'packages/*/**/*.js'
|
|
- '.github/workflows/docs.yml' # this file
|
|
- '!**/test/**'
|
|
- '!**/sample-code/**'
|
|
|
|
jobs:
|
|
docs:
|
|
name: Docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Install dependencies (Node.js)
|
|
uses: bahmutov/npm-install@v1
|
|
with:
|
|
useRollingCache: true
|
|
install-command: npm ci
|
|
- name: Install dependencies (Python)
|
|
run: PIP_BREAK_SYSTEM_PACKAGES=1 pip install -r packages/docutils/requirements.txt
|
|
- name: Configure Git User
|
|
run: |
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
- name: Build Docs
|
|
run: npm run docs:preview
|