Skip to content

Monorepo [0/?] - move move github actions to root #1134

Monorepo [0/?] - move move github actions to root

Monorepo [0/?] - move move github actions to root #1134

Workflow file for this run

name: Test docs build
env:
YARN_ENABLE_HARDENED_MODE: 0
on:
pull_request:
paths:
- ".github/workflows/docs-check.yml"
- "packages/react-native-reanimated/docs/**"
merge_group:
branches:
- main
jobs:
build:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: ubuntu-latest
env:
WORKING_DIRECTORY: packages/react-native-reanimated/docs
steps:
- name: Check out
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Clear annotations
run: .github/workflows/helper/clear-annotations.sh
- name: Install monorepo node dependencies
working-directory: packages/react-native-reanimated
run: yarn install
- name: Install Reanimated docs node dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn install
- name: Lint check docs
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn lint
- name: Build docs
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn build