Skip to content

Commit 944d0ae

Browse files
committed
Merge branch 'master' into use-redocly-cli
2 parents ca07642 + 2794f04 commit 944d0ae

4 files changed

Lines changed: 394 additions & 395 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
26+
cache: npm
27+
node-version: '16'
28+
- run: npm install
29+
- run: yarn redoc

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"gulp-connect": "^5.7.0",
3131
"marked": "^4.1.1",
3232
"style-loader": "^3.3.1",
33-
"webpack": "^5.76.0",
33+
"webpack": "^5.94.0",
3434
"webpack-cli": "^4.10.0"
3535
},
3636
"dependencies": {

0 commit comments

Comments
 (0)