Skip to content

Commit 748e646

Browse files
committed
merge main
2 parents 80e2c04 + 67cba65 commit 748e646

File tree

10 files changed

+1370
-1475
lines changed

10 files changed

+1370
-1475
lines changed

.eslintignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
example/*.ts
2-
bin
2+
bin
3+
4+
dist
5+
examples
6+
tests

.github/workflows/pull_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
node-version: [12.x, 14.x, 16.x]
17-
os: [ubuntu-latest, windows-latest]
17+
os: [macos-latest, ubuntu-latest, windows-latest]
1818
runs-on: ${{ matrix.os }}
1919
steps:
2020
- uses: actions/checkout@v2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![version(scoped)](https://img.shields.io/npm/v/openapi-typescript.svg)](https://www.npmjs.com/package/openapi-typescript)
22
[![npm downloads (weekly)](https://img.shields.io/npm/dw/openapi-typescript)](https://www.npmjs.com/package/openapi-typescript)
3-
[![codecov](https://codecov.io/gh/drwpow/openapi-typescript/branch/master/graph/badge.svg)](https://codecov.io/gh/drwpow/openapi-typescript)
3+
[![codecov](https://codecov.io/gh/drwpow/openapi-typescript/branch/main/graph/badge.svg)](https://codecov.io/gh/drwpow/openapi-typescript)
44

55
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
66
[![All Contributors](https://img.shields.io/badge/all_contributors-38-orange.svg?style=flat-square)](#contributors-)

jest.config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
module.exports = {
2-
preset: "ts-jest",
3-
testEnvironment: "node",
42
globals: {
53
"ts-jest": {
64
tsconfig: "tsconfig.esm.json",
75
},
86
},
7+
preset: "ts-jest",
8+
testTimeout: 10000,
9+
verbose: true,
910
};

0 commit comments

Comments
 (0)