Skip to content

Commit 0980f61

Browse files
authored
Merge pull request #4344 from ralfhandl/dev-update-from-main
dev: update from main
2 parents bf9155d + 328d6a3 commit 0980f61

18 files changed

+1708
-553
lines changed

.github/pull_request_template.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@ present on the main branch, only on the development branches).
1313
1414
Note that we do not accept changes to published specifications.
1515
-->
16+
17+
Tick one of the following options:
18+
19+
- [ ] schema changes are included in this pull request
20+
- [ ] schema changes are needed for this pull request but not done yet
21+
- [ ] no schema changes are needed for this pull request

.github/workflows/schema-tests.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@ jobs:
2828
with:
2929
node-version: '20.x'
3030

31-
- name: Install dependencies from main
32-
run: |
33-
git checkout remotes/origin/main -- package.json package-lock.json
34-
npm ci
31+
- name: Install dependencies
32+
run: npm ci
3533

3634
- name: Run tests
3735
run: npm run test

.github/workflows/validate-markdown.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,17 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21+
2122
- uses: actions/checkout@v4 # checkout repo content
2223
with:
2324
fetch-depth: 0
24-
- name: use the javascript environment from main
25-
run: |
26-
git checkout remotes/origin/main -- package.json package-lock.json .markdownlint.yaml
25+
2726
- uses: actions/setup-node@v4 # setup Node.js
2827
with:
2928
node-version: '20.x'
29+
3030
- name: Validate markdown
3131
run: npx --yes mdv versions/3.*.md src/oas.md
32+
3233
- name: Lint markdown 3.0.4, 3.1.1, and later
3334
run: npx --yes markdownlint-cli --config .markdownlint.yaml versions/3.0.4.md versions/3.1.[^0].md versions/3.[2-9].*.md src/oas.md

0 commit comments

Comments
 (0)