This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
chore(deps-dev): bump @commitlint/cli from 11.0.0 to 17.7.1 #550
Workflow file for this run
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
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 |