Skip to content

Commit c589e40

Browse files
Merge pull request #318 from OAI/v1.0.1-rel
1.0.1 patch version
2 parents e2b8bae + 44a7aa7 commit c589e40

19 files changed

+6592
-39
lines changed

.github/workflows/schema-tests.yaml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: schema-tests
2+
3+
# Author: @MikeRalphson / runs @jdesrosiers tests
4+
# Issue: https://github.com/OAI/OpenAPI-Specification/pull/2489
5+
6+
#
7+
# This workflow runs the npm test script to validate passing and failing
8+
# testcases for the metaschemas
9+
#
10+
11+
# run this on push to any branch and creation of pull-requests
12+
on:
13+
push: {}
14+
pull_request: {}
15+
workflow_dispatch: {}
16+
17+
jobs:
18+
test:
19+
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- uses: actions/checkout@v4 # checkout repo content
24+
with:
25+
fetch-depth: 0
26+
27+
- uses: actions/setup-node@v4 # setup Node.js
28+
with:
29+
node-version: '20.x'
30+
31+
- name: Install dependencies from main
32+
run: |
33+
# git checkout remotes/origin/main -- package.json package-lock.json #TODO: uncomment with subsequent PR
34+
npm ci
35+
- name: Run tests
36+
run: npm test

.github/workflows/validate-markdown.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,3 @@ jobs:
2222
node-version: '18.x'
2323
- name: Validate markdown
2424
run: npx mdv versions/1.*.md
25-

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ node_modules/
99
deploy/
1010
history
1111
Gemfile.lock
12+
coverage/

0 commit comments

Comments
 (0)