Skip to content

Commit f498b4d

Browse files
Merge branch 'main' into fix/ai-chat-buffer
2 parents e04bcbf + 167f3b9 commit f498b4d

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
publish:
1515
name: Deploy playground
1616
runs-on: ubuntu-latest
17+
timeout-minutes: 30
1718
environment: production
1819

1920
strategy:

.github/workflows/pr-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
build:
1414
name: Build playground
1515
runs-on: ubuntu-latest
16+
timeout-minutes: 30
1617

1718
strategy:
1819
matrix:

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
build:
1717
name: Build playground
1818
runs-on: ubuntu-latest
19+
timeout-minutes: 30
1920

2021
strategy:
2122
matrix:

src/content/module1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ concept HelloWorld {
2727
}
2828
```
2929

30-
- Step 4: Add a new [String Propoerty](https://concerto.accordproject.org/docs/design/specification/model-properties) to the Concept.
30+
- Step 4: Add a new [String Property](https://concerto.accordproject.org/docs/design/specification/model-properties) to the Concept.
3131

3232
```
3333
namespace hello@1.0.0
3434
@template
3535
concept HelloWorld {
3636
o String name
3737
}
38-
```
38+
```

src/samples/list.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ concept Person {
55
o String[] middleNames
66
}`;
77

8-
const TEMPLATE = `> Ordered and unorded list expansion
8+
const TEMPLATE = `> Ordered and unordered list expansion
99
1010
## Lists
1111
@@ -27,4 +27,4 @@ const DATA = {
2727
};
2828

2929
const NAME = 'List';
30-
export {NAME, MODEL,DATA,TEMPLATE};
30+
export {NAME, MODEL,DATA,TEMPLATE};

0 commit comments

Comments
 (0)