ci: update workflows and add deploy workflow #383
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
# 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 |