Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit b4a81b1

Browse files
committed
chore(project): move building docs to GitHub Actions
1 parent d226305 commit b4a81b1

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

Diff for: .circleci/config.yml

-17
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,6 @@ jobs:
4141
- run: npm run lint
4242
- run: npx commitlint --from origin/master
4343

44-
docs:
45-
<<: *defaults
46-
docker:
47-
- image: circleci/python:3.6.8-node-browsers
48-
steps:
49-
- checkout
50-
- <<: *install
51-
- run:
52-
working_directory: docs
53-
command: pipenv install --dev
54-
- run:
55-
working_directory: docs
56-
command: |
57-
export PATH="$(yarn bin):$PATH"
58-
pipenv run make html
59-
6044
cover:
6145
<<: *defaults
6246
steps:
@@ -74,7 +58,6 @@ workflows:
7458
- test-node12
7559
- test-smoke
7660
- lint
77-
- docs
7861
- cover:
7962
requires:
8063
- test-node12

Diff for: .github/workflows/docs.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Documentation
2+
on: [push]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-node@v2-beta
9+
with:
10+
node-version: 10
11+
- uses: actions/setup-python@v2
12+
with:
13+
python-version: 3.6
14+
- run: pip install -r docs/requirements.txt
15+
- run: yarn --frozen-lockfile --ignore-optional
16+
- run: env PATH="$(yarn bin):$PATH" make html
17+
working-directory: docs

0 commit comments

Comments
 (0)