Skip to content

Commit

Permalink
Merge pull request #4 from samchon/features/v3.1
Browse files Browse the repository at this point in the history
Finalize OpenAPI type definitions.
  • Loading branch information
samchon authored Apr 11, 2024
2 parents 0a45b8c + e771ba6 commit e8a0059
Show file tree
Hide file tree
Showing 20 changed files with 33,073 additions and 483 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: build
on:
push:
paths:
- 'examples/**'
- 'src/**'
- 'test/**'
- 'package.json'
pull_request:
paths:
- 'examples/**'
- 'src/**'
- 'test/**'
- 'package.json'

jobs:
Ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: pnpm/action-setup@v2
with:
version: 8

- name: Install dependencies
run: pnpm install
- name: Build
run: npm run build
- name: Test
run: npm run test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
bin/
examples/normalized/
lib/
node_modules/

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/samchon/openapi/blob/master/LICENSE)
[![npm version](https://img.shields.io/npm/v/@samchon/openapi.svg)](https://www.npmjs.com/package/@samchon/openapi)
[![Downloads](https://img.shields.io/npm/dm/@samchon/openapi.svg)](https://www.npmjs.com/package/@samchon/openapi)
[![Build Status](https://github.com/samchon/openapi/workflows/build/badge.svg)](https://github.com/samchon/openapi/actions?query=workflow%3Abuild)

OpenAPI definitions and converters for [typia](https://github.com/samchon/typia) and [nestia](https://github.com/samchon/nestia).
Loading

0 comments on commit e8a0059

Please sign in to comment.