Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,19 @@ jobs:
# - Pass the changed files as a comma-separated list

- name: External link and anchor check
run: npm run checkExternalLinks -- --baseFolder=.. --docFiles=${{ needs.checkChangedFiles.outputs.files }} --reporter mocha-junit-reporter --reporter-options mochaFile=../externalLinks.xml || FAILED=1
run: npm run checkExternalLinks -- --baseFolder=.. --docFiles=${{ needs.checkChangedFiles.outputs.files }} --reporter mocha-junit-reporter --reporter-options mochaFile=externalLinks.xml || FAILED=1
working-directory: doclib

- name: Image links check
run: npm run imageLinks -- --baseFolder=.. --imageFolder=static --docFiles=${{ needs.checkChangedFiles.outputs.files }} --reporter mocha-junit-reporter --reporter-options mochaFile=imageLinks.xml|| FAILED=1
run: npm run imageLinks -- --baseFolder=.. --imageFolder=static --docFiles=${{ needs.checkChangedFiles.outputs.files }} --reporter mocha-junit-reporter --reporter-options mochaFile=imageLinks.xml || FAILED=1
working-directory: doclib

- name: Unused images check
run: npm run usedImages -- --baseFolder=.. --docFiles=docs --imageFolder=static --ignoreImages=img/site --reporter mocha-junit-reporter --reporter-options mochaFile=usedImages.xml|| FAILED=1
run: npm run usedImages -- --baseFolder=.. --docFiles=docs --imageFolder=static --ignoreImages=img/site --reporter mocha-junit-reporter --reporter-options mochaFile=usedImages.xml || FAILED=1
working-directory: doclib

- name: Dependency proposer
run: npm run proposeDependencies -- --baseFolder=.. --docFiles=${{ needs.checkChangedFiles.outputs.files }} --major --reporter mocha-junit-reporter --reporter-options mochaFile=proposedDependencies.xml|| FAILED=1
run: npm run proposeDependencies -- --baseFolder=.. --docFiles=${{ needs.checkChangedFiles.outputs.files }} --major --reporter mocha-junit-reporter --reporter-options mochaFile=proposedDependencies.xml || FAILED=1
working-directory: doclib

- name: log result
Expand Down
7 changes: 7 additions & 0 deletions docs/building-on-etherlink/transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,13 @@ run();
:::note

Instant Confirmations are an experimental feature.
As such, it has to be enabled by adding to the node configuration file:

```json
"experimental_features": {
"preconfirmation_stream_enabled": true
}
```

:::

Expand Down
7 changes: 7 additions & 0 deletions docs/building-on-etherlink/websockets.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,13 @@ See the documentation for your WebSocket client library for how to manage the co
:::note

Instant Confirmations are an experimental feature.
As such, it has to be enabled by adding to the node configuration file:

```json
"experimental_features": {
"preconfirmation_stream_enabled": true
}
```

:::

Expand Down
Loading