We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1996bce + 91c274b commit 2794f04Copy full SHA for 2794f04
2 files changed
.github/workflows/mt-docs-data-api-reference.yml
@@ -0,0 +1,29 @@
1
+name: movabletype/mt-docs-data-api-reference
2
+on:
3
+ push:
4
+ branches:
5
+ - "**/*"
6
+ pull_request:
7
+ schedule:
8
+ - cron: 0 8 * * *
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: checkout
14
+ uses: actions/checkout@v4.1.0
15
+ - name: Get yarn cache directory path
16
+ id: yarn-cache-dir-path
17
+ run: echo 'dir=$(yarn cache dir)' >> $GITHUB_OUTPUT
18
+ - name: Set up yarn cache
19
+ uses: actions/cache@v3.3.2
20
+ with:
21
+ path: "${{ steps.yarn-cache-dir-path.outputs.dir }}"
22
+ key: "${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}"
23
+ restore-keys: "${{ runner.os }}-yarn-"
24
+ - uses: actions/setup-node@v4.0.0
25
26
+ cache: npm
27
+ node-version: '16'
28
+ - run: npm install
29
+ - run: yarn redoc
.travis.yml
0 commit comments