Skip to content

Commit a1fe4d3

Browse files
committed

File tree

4 files changed

+13
-62
lines changed

4 files changed

+13
-62
lines changed

.github/workflows/js-test-and-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
with:
1818
node-version: lts/*
1919
- uses: ipfs/aegir/actions/cache-node-modules@master
20+
- uses: actions/setup-java@v2 # https://github.com/actions/setup-java#basic
21+
with:
22+
distribution: 'temurin'
23+
java-version: '17'
2024
- run: npm run --if-present lint
2125
- run: npm run --if-present dep-check
2226

.github/workflows/test-and-release.yml

Lines changed: 0 additions & 60 deletions
This file was deleted.

.github/workflows/typecheck.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,16 @@ jobs:
2121
uses: actions/[email protected]
2222
with:
2323
node-version: ${{ matrix.node-version }}
24+
- name: Use Java for openapi generator
25+
uses: actions/setup-java@v2 # https://github.com/actions/setup-java#basic
26+
with:
27+
distribution: 'temurin'
28+
java-version: '17'
2429
- name: Install dependencies
2530
run: npm install
31+
- name: Generate client from openapi spec
32+
run: npm run gen
2633
- name: Typecheck
2734
uses: gozala/[email protected]
2835
with:
29-
project: test/tsconfig.json
36+
project: tsconfig.json

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
},
162162
"dependencies": {
163163
"fetch-ponyfill": "^7.1.0",
164-
"patch-package": "^6.4.7"
164+
"yargs": "^17.3.1"
165165
},
166166
"devDependencies": {
167167
"@openapitools/openapi-generator-cli": "^2.4.26",

0 commit comments

Comments
 (0)