We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1381726 commit e27fefaCopy full SHA for e27fefa
.github/workflows/node.js.yml
@@ -10,14 +10,25 @@ jobs:
10
test:
11
name: Running tests...
12
runs-on: ubuntu-latest
13
-
+
14
steps:
15
- uses: actions/checkout@v2
16
- name: Use node.js ${{ matrix.node-version }}
17
uses: actions/setup-node@v1
18
with:
19
node-version: ${{ matrix.node-version }}
20
- - name: Installing
21
- - run: npm install
22
- - name: Test
23
- - run: npm run validate
+ - name: Install and test
+ run: |
+ npm install
24
+ npm run validate
25
26
+ - name: Building docs
27
+ run: npm run docz:build
28
+ - name: Deploy 🚀
29
+ uses: JamesIves/github-pages-deploy-action@3.5.9
30
+ with:
31
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
+ BRANCH: gh-pages
33
+ FOLDER: .docz/dist
34
0 commit comments