Skip to content

Commit fd7d763

Browse files
feat: add json schema ref resolver
1 parent 6ae5ae6 commit fd7d763

15 files changed

+6609
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Set default behavior to automatically convert line endings
2+
* text=auto eol=lf

.github/workflows/test.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Run Tests
2+
3+
on: [push, pull_request]
4+
5+
permissions:
6+
contents: read
7+
8+
jobs:
9+
test:
10+
name: Test
11+
runs-on: ${{ matrix.os }}
12+
13+
strategy:
14+
matrix:
15+
node-version: [18.x, 20.x]
16+
os: [ubuntu-latest, windows-latest, macOS-latest]
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
21+
- name: Use Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@v3
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
26+
- name: Install
27+
run: |
28+
npm install
29+
30+
- name: Lint
31+
run: |
32+
npm run test:lint
33+
34+
- name: Test
35+
run: |
36+
npm test:unit
37+
38+
- name: Type Definitions
39+
run: |
40+
npm run test:typescript

0 commit comments

Comments
 (0)