-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
41 lines (40 loc) · 1.17 KB
/
docs-reanimated-build-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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