Skip to content

Add Hire us section to docs #1109

Add Hire us section to docs

Add Hire us section to docs #1109

Workflow file for this run

name: Test docs build
env:
YARN_ENABLE_HARDENED_MODE: 0
on:
pull_request:
paths:
- '.github/workflows/docs-check.yml'
- 'docs/**'
merge_group:
branches:
- main
jobs:
build:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: ubuntu-latest
env:
WORKING_DIRECTORY: 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: scripts/clear-annotations.sh
- name: Install node dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn
- name: Lint check docs
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn lint
- name: Build docs
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn build