Skip to content

Commit 30ef76b

Browse files
authored
Merge pull request #66 from leopardslab/nodecloud-next
RFC #nc000 Nodecloud 2.0
2 parents db3186c + bcac477 commit 30ef76b

File tree

303 files changed

+99415
-1595
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

303 files changed

+99415
-1595
lines changed

.github/workflows/format.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Format
2+
on:
3+
pull_request:
4+
branches: [master]
5+
jobs:
6+
format:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
with:
11+
ref: ${{ github.head_ref }}
12+
- uses: actions/setup-node@v1
13+
with:
14+
node-version: "12.x"
15+
- name: Format
16+
run: |
17+
yarn
18+
yarn format
19+
- name: Commit changes
20+
uses: stefanzweifel/[email protected]
21+
with:
22+
commit_message: Apply formatting changes
23+
branch: ${{ github.head_ref }}

.github/workflows/jsDoc.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Host Docs
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
host-documentation:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v1
12+
13+
- name: Generate Docs
14+
run: |
15+
yarn
16+
yarn doc
17+
- name: Deploy
18+
uses: JamesIves/github-pages-deploy-action@releases/v3
19+
with:
20+
GITHUB_TOKEN: ${{ secrets.JSDoc_TOKEN }}
21+
BRANCH: gh-pages
22+
FOLDER: docs

.github/workflows/nodejs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ on:
44
push:
55
branches:
66
- master
7+
- nodecloud-next
78
pull_request:
89
branches:
910
- master
11+
- nodecloud-next
1012

1113
jobs:
1214
build:

README.md

Lines changed: 257 additions & 83 deletions
Large diffs are not rendered by default.
42.9 KB
Loading
35.6 KB
Loading
37.7 KB
Loading
33.3 KB
Loading

assets/generator/rich_picture.png

1.27 MB
Loading
23.5 KB
Loading

0 commit comments

Comments
 (0)