forked from meliorence/react-native-render-html
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 981 Bytes
/
docs.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
# 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: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
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
- run: yarn website build
name: Build website
- run: yarn discovery test:ts
name: Discovery TS