Skip to content

ci: update workflows and add deploy workflow #378

ci: update workflows and add deploy workflow

ci: update workflows and add deploy workflow #378

Workflow file for this run

# This workflow will do a clean install of node dependencies, run JS and Typescript tests.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Docs
on: [push, pull_request]
jobs:
test:
name: Testing
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --immutable
- run: yarn workspace react-native-render-html build
name: Build sources
- run: yarn process-svg-assets
name: Process SVG assets
- run: yarn build:tools
name: Build Tooling Libraries
- run: yarn build:docs
name: Build documentation
- name: Build website
env:
NODE_OPTIONS: '--openssl-legacy-provider'
run: yarn website build
- run: yarn discovery test:ts
name: Discovery TS