Skip to content

Commit 433f0d3

Browse files
authored
update OpenAPI version; clearer README notice; bump TS SDK version (#168)
1 parent 82ec86b commit 433f0d3

12 files changed

Lines changed: 2073 additions & 1491 deletions

File tree

.github/pull_request_template.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## Description
2+
3+
## How was this change tested?
4+
5+
- [ ] Automated test (unit, integration, etc.)
6+
- [ ] Manual test (provide reproducible testing steps below)
7+
8+
## Screenshots

.github/workflows/ci.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [20.x, 22.x]
16+
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
20+
21+
- name: Setup Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
cache: "npm"
26+
27+
- name: Install dependencies
28+
run: npm ci
29+
30+
- name: Run build
31+
run: npm run build
32+
33+
- name: Run tests
34+
run: npm test
35+
36+
- name: Check for uncommitted changes
37+
run: |
38+
if [ -n "$(git status --porcelain)" ]; then
39+
echo "Error: Uncommitted changes detected after build"
40+
git status --porcelain
41+
exit 1
42+
fi

0 commit comments

Comments
 (0)