Skip to content

Commit e771ba6

Browse files
committed
Finalize OpenAPI type definitions.
1 parent 391f02d commit e771ba6

20 files changed

+33073
-483
lines changed

.github/workflows/build.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: build
2+
on:
3+
push:
4+
paths:
5+
- 'examples/**'
6+
- 'src/**'
7+
- 'test/**'
8+
- 'package.json'
9+
pull_request:
10+
paths:
11+
- 'examples/**'
12+
- 'src/**'
13+
- 'test/**'
14+
- 'package.json'
15+
16+
jobs:
17+
Ubuntu:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-node@v4
22+
with:
23+
node-version: 20.x
24+
- uses: pnpm/action-setup@v2
25+
with:
26+
version: 8
27+
28+
- name: Install dependencies
29+
run: pnpm install
30+
- name: Build
31+
run: npm run build
32+
- name: Test
33+
run: npm run test

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
bin/
2+
examples/normalized/
23
lib/
34
node_modules/
45

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/samchon/openapi/blob/master/LICENSE)
2+
[![npm version](https://img.shields.io/npm/v/@samchon/openapi.svg)](https://www.npmjs.com/package/@samchon/openapi)
3+
[![Downloads](https://img.shields.io/npm/dm/@samchon/openapi.svg)](https://www.npmjs.com/package/@samchon/openapi)
4+
[![Build Status](https://github.com/samchon/openapi/workflows/build/badge.svg)](https://github.com/samchon/openapi/actions?query=workflow%3Abuild)
5+
16
OpenAPI definitions and converters for [typia](https://github.com/samchon/typia) and [nestia](https://github.com/samchon/nestia).

0 commit comments

Comments
 (0)