Skip to content

Commit b2ebec8

Browse files
authored
Merge branch 'next' into feat/modules/airline/add-airline-module
2 parents ea7d931 + 05d6eb4 commit b2ebec8

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ jobs:
110110

111111
e2e-test:
112112
runs-on: ubuntu-latest
113-
timeout-minutes: 15
113+
container: cypress/browsers:node18.12.0-chrome107
114+
timeout-minutes: 10
114115
name: 'E2E Doc Test: node-18, ubuntu-latest'
115116
steps:
116117
- name: Checkout
@@ -121,11 +122,6 @@ jobs:
121122
with:
122123
version: 7
123124

124-
- name: Set node version to 18
125-
uses: actions/setup-node@v3
126-
with:
127-
node-version: 18
128-
129125
- name: Install deps
130126
run: pnpm install
131127

@@ -134,11 +130,6 @@ jobs:
134130

135131
- id: e2e
136132
name: Run e2e
137-
run: timeout 5m pnpm run docs:test:e2e:run
138-
continue-on-error: true
139-
140-
- name: Run e2e (2nd attempt)
141-
if: ${{ steps.e2e.outcome != 'success' }}
142133
run: pnpm run docs:test:e2e:run
143134

144135
lint:

docs/.vitepress/components/api-docs/method.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function seeAlsoToUrl(see: string): string {
4444
:href="seeAlsoToUrl(seeAlso)"
4545
v-html="seeAlso"
4646
/>
47-
<template v-else v-html="seeAlso" />
47+
<div v-else v-html="seeAlso" />
4848
</li>
4949
</ul>
5050
</div>

0 commit comments

Comments
 (0)