fix(appium): update dependency ws to v8.17.1 #10108
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: 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@v4 | |
- name: Install dependencies (Node.js) | |
uses: bahmutov/npm-install@v1 | |
with: | |
useRollingCache: true | |
install-command: npm ci | |
- name: Install dependencies (Python) | |
run: 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 |