Skip to content

Commit

Permalink
feat: add json schema ref resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-tymoshenko committed Oct 20, 2023
1 parent 6ae5ae6 commit fd7d763
Show file tree
Hide file tree
Showing 15 changed files with 6,609 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Set default behavior to automatically convert line endings
* text=auto eol=lf
40 changes: 40 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Run Tests

on: [push, pull_request]

permissions:
contents: read

jobs:
test:
name: Test
runs-on: ${{ matrix.os }}

strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install
run: |
npm install
- name: Lint
run: |
npm run test:lint
- name: Test
run: |
npm test:unit
- name: Type Definitions
run: |
npm run test:typescript
Loading

0 comments on commit fd7d763

Please sign in to comment.