fixed a typo— "grater" #168
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: Docs Reanimated build check | |
env: | |
YARN_ENABLE_HARDENED_MODE: 0 | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/docs-reanimated-build-check.yml' | |
- packages/docs-reanimated/** | |
merge_group: | |
branches: | |
- main | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
build: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
runs-on: ubuntu-latest | |
env: | |
WORKING_DIRECTORY: packages/docs-reanimated | |
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 |