This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 280
80 lines (62 loc) · 1.78 KB
/
run-docs-test.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: run-docs-test
on: push
# here add directory listing on push to test
# paths:
# - /docs/*.rst
# - /docs/**/*.rst
jobs:
commitlint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [12.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: yarn install
- run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD
quality-checks:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-python@v2
with:
python-version: '3.x'
# venv
- run: pip install -r ./docs/requirements.txt
- run: echo $(python --version) > .python-version
- run: 'if [ ! -d ./venv ]; then python -m venv ./venv; fi'
- run: source $(pwd)/venv/bin/activate
# install
- run: yarn install
- run: yarn lint
- run: yarn docs:lint
- run: yarn docs:test-extensions
docs-dry-run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/setup-python@v2
with:
python-version: '3.x'
# venv
- run: pip install -r ./docs/requirements.txt
- run: echo $(python --version) > .python-version
- run: 'if [ ! -d ./venv ]; then python -m venv ./venv; fi'
- run: source $(pwd)/venv/bin/activate
- run: yarn install
- run: yarn docs:build