Skip to content

Commit 7316781

Browse files
authored
Fix docs (#120)
* Fixed a typo in one of the examples * Added Node 20.x to the PR flows * Added the *.md files to the github pr flow
1 parent bdf381c commit 7316781

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/pr-js.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
- '**.js*'
55
- '**.ts*'
66
- '**.html'
7+
- 'guide/src/**/*.md'
78
- '**/package.json'
89
- '**/package-lock.json'
910

@@ -13,7 +14,7 @@ jobs:
1314
name: Build guide
1415
strategy:
1516
matrix:
16-
node-version: [16.x, 18.x]
17+
node-version: [16.x, 18.x, 20.x]
1718
runs-on: ubuntu-latest
1819
steps:
1920
- uses: actions/checkout@v3

.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
strategy:
137137
matrix:
138138
wasm-dirctory: [config-wasm, hdr-histogram-wasm]
139-
node-version: [16.x, 18.x]
139+
node-version: [16.x, 18.x, 20.x]
140140
runs-on: ubuntu-latest
141141
env:
142142
WASM_FILE: ${{ matrix.wasm-dirctory }}_bg.wasm

guide/src/config/endpoints-section.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ Using the same response data from example 2, with a provides section defined as:
271271
provides:
272272
friendsCount:
273273
select:
274-
id: for_each[0]
274+
id: for_each[0].id
275275
count: for_each[0].friends.length
276276
for_each:
277277
- response.body.characters

0 commit comments

Comments
 (0)