Skip to content

chore:refactor ts cv hooks (#64) #15

chore:refactor ts cv hooks (#64)

chore:refactor ts cv hooks (#64) #15

name: Check documentation
on:
push:
branches:
- main
paths:
- 'docs/**'
workflow_dispatch:
jobs:
check:
if: github.repository == 'software-mansion/react-native-executorch'
runs-on: ubuntu-latest
concurrency:
group: docs-check-${{ github.ref }}
cancel-in-progress: true
env:
WORKING_DIRECTORY: docs
steps:
- name: checkout
uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
cache: 'yarn'
- name: Install node dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
# the mkdir is a workaround to avoid this: https://github.com/actions/setup-node/issues/317
run: mkdir -p .yarn/cache && yarn
- name: Generate docs
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn build